summaryrefslogtreecommitdiffstats
path: root/modules/session/store.go
diff options
context:
space:
mode:
Diffstat (limited to 'modules/session/store.go')
-rw-r--r--modules/session/store.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/session/store.go b/modules/session/store.go
index 7b0c550ace..4fa4d2848f 100644
--- a/modules/session/store.go
+++ b/modules/session/store.go
@@ -11,9 +11,9 @@ import (
// Store represents a session store
type Store interface {
- Get(interface{}) interface{}
- Set(interface{}, interface{}) error
- Delete(interface{}) error
+ Get(any) any
+ Set(any, any) error
+ Delete(any) error
}
// RegenerateSession regenerates the underlying session and returns the new store