2916082
623eaf1 ^
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