webservice/session/pkg.go

20 lines
263 B
Go

package session
import (
// Standard
"time"
)
type T struct {
UUID string
Created time.Time
LastUsed time.Time `db:"last_used"`
Authenticated bool
UserID int `db:"user_id"`
Username string
Name string
ApplicationData any
}