Skip to content

Commit 49d233a

Browse files
moved interface{} to any
1 parent ac98c12 commit 49d233a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

internal/session/utils.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package session
33
import "time"
44

55
/* serialize session information to store in Redis */
6-
func (s *Session) serializeSessionForRedis() map[string]interface{} {
7-
return map[string]interface{} {
6+
func (s *Session) serializeSessionForRedis() map[string]any {
7+
return map[string]any {
88
"id": s.ID,
99
"username": s.Username,
1010
"ip": s.IP,

0 commit comments

Comments
 (0)