8 lines
94 B
Go
8 lines
94 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type Token struct {
|
|
User string
|
|
Expiration time.Time
|
|
}
|