Files
2025-10-29 00:24:50 -05:00

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"`
}