1 Commits

Author SHA1 Message Date
fd0458cc08 fixed an issue with session manager interface 2025-12-18 13:26:00 -05:00

View File

@@ -19,7 +19,7 @@ type Logger interface {
type SessionManager interface { type SessionManager interface {
Get(ctx context.Context, key string) any Get(ctx context.Context, key string) any
Put(ctx context.Context, key string, value any) error Put(ctx context.Context, key string, value any)
} }
type Config struct { type Config struct {