This commit is contained in:
tavo 2025-06-30 01:48:35 -06:00
parent 5161280cf3
commit 412ce338f3

View file

@ -12,8 +12,8 @@ import (
) )
type SessionStore[T any] struct { type SessionStore[T any] struct {
mu sync.RWMutex mu sync.RWMutex
sessions map[string]session[T] sessions map[string]session[T]
maxSessions int maxSessions int
tokenLength int tokenLength int
} }