From fd0458cc08028204cff1433752b792165fde0ffb Mon Sep 17 00:00:00 2001 From: Derek Wright Date: Thu, 18 Dec 2025 13:26:00 -0500 Subject: [PATCH] fixed an issue with session manager interface --- auth/auth0/auth0.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth/auth0/auth0.go b/auth/auth0/auth0.go index 1cb853a..dd0aba7 100644 --- a/auth/auth0/auth0.go +++ b/auth/auth0/auth0.go @@ -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 {