mirror of
https://github.com/wahyd4/badger.git
synced 2026-08-09 05:15:58 +10:00
11 lines
141 B
Go
11 lines
141 B
Go
package models
|
|
|
|
import "github.com/jinzhu/gorm"
|
|
|
|
type UserAPIToken struct {
|
|
gorm.Model
|
|
Token string
|
|
ExpiresAt string
|
|
UserID int
|
|
}
|