http urls monitor.

session_debug.go 417B

123456789101112131415161718192021
  1. package auth
  2. type DebugSessionStore struct{}
  3. func NewDebugSessionStore() *DebugSessionStore {
  4. return &DebugSessionStore{}
  5. }
  6. func (*DebugSessionStore) StoreJwtToken(key string, uid int64, timeout int64) error {
  7. return nil
  8. }
  9. func (*DebugSessionStore) IsExistsJwtToken(key string) bool {
  10. return true
  11. }
  12. // DeleteJwtToken delete jwt token
  13. func (*DebugSessionStore) DeleteJwtToken(key string) bool {
  14. return true
  15. }