fromozuzhouzzz
Deploy grok2api v3.0.11 to HF Spaces
f1dd159
Raw
History Blame Contribute Delete
451 Bytes
package admin
import "time"
// Admin 表示系统唯一管理员。
type Admin struct {
ID uint64
Username string
PasswordHash string
CreatedAt time.Time
UpdatedAt time.Time
}
// Session 表示可轮换和删除的管理员刷新会话。
type Session struct {
ID uint64
AdminID uint64
RefreshTokenHash string
ExpiresAt time.Time
LastUsedAt *time.Time
CreatedAt time.Time
}