Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Service ¶
type Service interface { Login(req *request.LoginRequest) (response.LoginResponse, error) Logout(req *request.LogoutRequest) error CreateUser(req *request.CreateUserRequest) error RefreshToken(token string) (response.RefreshTokenResponse, error) UpdateUserInfo(req *request.UpdateUserInfoRequest) error UpdateSelfInfo(req *request.UpdateSelfInfoRequest) error UpdateUserPhone(req *request.UpdateUserPhoneRequest) error UpdateUserEmail(req *request.UpdateUserEmailRequest) error UpdateUserPassword(req *request.UpdateUserPasswordRequest) error GetUserInfo(userID int64) (response.GetUserInfoResponse, error) GetUserList(req *request.GetUserListRequest) (response.GetUserListResponse, error) RemoveUser(userID int64) error RestPassword(req *request.ResetPasswordRequest) error GetUserTeam(req *request.GetUserTeamRequest) (response.GetUserTeamResponse, error) IsInBlacklist(token string) (bool, error) }
Click to show internal directories.
Click to hide internal directories.