(ctx context.Context, username string, password string)
| 21 | type UserService interface { |
| 22 | SignUp(ctx context.Context, u domain.User) error |
| 23 | Login(ctx context.Context, username string, password string) (domain.User, error) |
| 24 | LoginBySMS(ctx context.Context, number string, code string) (domain.User, error) |
| 25 | ChangePassword(ctx context.Context, username string, password string, newPassword string, confirmPassword string) error |
| 26 | DeleteUser(ctx context.Context, username string, password string, uid int64) error |
no outgoing calls
no test coverage detected