Files
Gardomatic/internal/storage/tokens.go
T
kleiax 904d14b64c
CI / test (push) Canceled after 0s
Initial commit
2026-09-12 22:22:17 +02:00

14 lines
313 B
Go

package storage
import (
"time"
"gardomatic.kleiax.de/internal/auth"
)
// TokenModelInterface persists scoped, expiring authentication token hashes.
type TokenModelInterface interface {
New(userID int, ttl time.Duration, scope string) (auth.Token, error)
DeleteAllForUser(scope string, userID int) error
}