wolbodge/sessions/sessions.go
2025-03-22 13:19:55 +01:00

23 lines
431 B
Go

package sessions
import "time"
type Session struct {
Id string
Description string
CreatedAt time.Time
}
type Storage interface {
// Check if the storage contains any sessions
HasSessions() (bool, error)
// List all sessions
GetSessions() ([]Session, error)
// Start a new session
StartSession(description string, createdAt time.Time) (Session, error)
// End an old session
EndSession(id string) error
}