user_handler.go 310 B

123456
  1. package zllauth1
  2. type UserCheckHandler interface {
  3. CheckUserLogin(loginInfo map[string]interface{}, serverExternalInfo map[string]interface{}) (isAuthSuccess bool, extendInfo map[string]interface{}, visibleErr LoginFailureType, internalErr error)
  4. RenewJwtCallback(info map[string]interface{}) (err error)
  5. }