blob: a02ba1e31f68a6983e2c9f0351171ccd7ae80504 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
package session
type Store interface {
Load(sessionID string) Values
Save(sessionID string, value Values) error
Remove(sessionID string) error
}
type Values map[string]any
|