webservice/session/pkg.go

17 lines
212 B
Go
Raw Normal View History

2024-01-04 20:19:47 +01:00
package session
import (
// Standard
"time"
)
type T struct {
UUID string
Created time.Time
LastUsed time.Time `db:"last_used"`
Authenticated bool
Username string
Name string
}