Pārlūkot izejas kodu

session interface

Paul 6 gadus atpakaļ
vecāks
revīzija
322d346fad
1 mainītis faili ar 1 papildinājumiem un 3 dzēšanām
  1. 1
    3
      middleware/auth/session.go

+ 1
- 3
middleware/auth/session.go Parādīt failu

@@ -1,10 +1,8 @@
1 1
 package auth
2 2
 
3
-import "time"
4
-
5 3
 type Session interface {
6 4
 	// StoreJwtToken store jwt token is redis, make it expired for feature
7
-	StoreJwtToken(key string, value string, timeout time.Duration) error
5
+	StoreJwtToken(key string, value string, timeout int64) error
8 6
 
9 7
 	// IsExistsJwtToken judge whether token is invalid
10 8
 	IsExistsJwtToken(key string) bool