elh_int.go 560 B

1234567891011121314151617
  1. package zllauth_gin
  2. import (
  3. "git.swzry.com/zry/zllauth1/zllauth1"
  4. "net/http"
  5. )
  6. type ClientInfo struct {
  7. }
  8. type EventLogHandler interface {
  9. InternalError(module string, req *http.Request, rawerr error)
  10. JsonDecodeError(module string, req *http.Request, rawerr error)
  11. LoginFailed(req *http.Request, visibleError zllauth1.LoginFailureType, rawerr error)
  12. RenewJWTFailed(req *http.Request, visibleError zllauth1.LoginFailureType, rawerr error)
  13. HandlingOtherEncryptedRequestFailed(req *http.Request, visibleError zllauth1.LoginFailureType, rawerr error)
  14. }