mirror of
https://github.com/wisplite/raster.git
synced 2026-05-01 14:42:44 -05:00
10 lines
181 B
Go
10 lines
181 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type AccessToken struct {
|
|
Token string `gorm:"primaryKey"`
|
|
UserID string `gorm:"not null"`
|
|
Expires time.Time `gorm:"not null"`
|
|
}
|