Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type IUserAuthStorage ¶
type IUserAuthStorage interface { CreateUser(user request.Register) (userID string, err error) GetUserPassword(email string) (password string, err error) GetUserID(email string) (userID string, err error) CheckUser(email string) (exists bool, err error) GetUserProfile(userID string) (*response.UserProfile, error) ChangeUserProfile(userID string, profile *request.ChangeProfile) error GetUserPasswordById(userID string) (password string, err error) ChangeUserPassword(userID string, passwords string) error }
Click to show internal directories.
Click to hide internal directories.