feat(platform): add session service
parent
fdbca49c2e
commit
d29d1aa698
|
@ -0,0 +1,23 @@
|
|||
package platform
|
||||
|
||||
import (
|
||||
"context"
|
||||
"time"
|
||||
)
|
||||
|
||||
// Session is a user session.
|
||||
type Session struct {
|
||||
ID ID `json:"id"`
|
||||
Key string `json:"key"`
|
||||
CreatedAt time.Time `json:"createdAt"`
|
||||
ExpiresAt time.Time `json:"expiresAt"`
|
||||
UserID ID `json:"userID,omitempty"`
|
||||
Permissions []Permission `json:"permissions,omitempty"`
|
||||
}
|
||||
|
||||
// SessionService represents a service for managing user sessions.
|
||||
type SessionService interface {
|
||||
FindSession(ctx context.Context, key string) (*Session, error)
|
||||
ExpireSession(ctx context.Context, key string) error
|
||||
CreateSession(ctx context.Context, user string) (*Session, error)
|
||||
}
|
Loading…
Reference in New Issue