diff options
| author | sanine-a <sanine.not@pm.me> | 2023-05-10 12:18:57 -0500 | 
|---|---|---|
| committer | sanine-a <sanine.not@pm.me> | 2023-05-10 12:18:57 -0500 | 
| commit | fd994ce631ce7244157f81678574e6bc420d0fcc (patch) | |
| tree | aa1bac1a1419dc83588d2895ae54f5c8a3da8283 /db/db.go | |
| parent | facfe2b26f1ce8cbc125f7f1192d2e0d65c51ae9 (diff) | |
implement user logins and gatekeeping
Diffstat (limited to 'db/db.go')
| -rw-r--r-- | db/db.go | 1 | 
1 files changed, 1 insertions, 0 deletions
| @@ -56,6 +56,7 @@ type Model interface {  	DeleteSession(session Session) error  	TouchSession(session Session) error  	CheckSession(session Session) (bool, error) +	CheckSessionId(id string) (bool, error)  	CleanSessions(maxIdle time.Duration) error  	AllSessions() ([]Session, error) | 
