fixed an issue with session manager interface

This commit is contained in:
2025-12-18 13:26:00 -05:00
parent 87a36aff39
commit fd0458cc08

View File

@@ -19,7 +19,7 @@ type Logger interface {
type SessionManager interface {
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 {