1234567891011121314151617181920212223242526272829303132333435363738394041 |
- package biz
- import (
- "context"
- pb "sikey/w303a/http/api/user/v2"
- )
- type UserRepo interface {
- }
- type UserUsecase struct {
- userRepo UserRepo
- }
- func NewUserUsecase(userRepo UserRepo) *UserUsecase {
- return &UserUsecase{userRepo: userRepo}
- }
- func (uc *UserUsecase) SignIn(ctx context.Context, req *pb.SignInRequest) (*pb.SignInResponse, error) {
- return nil, nil
- }
- func (uc *UserUsecase) SignUp(ctx context.Context, req *pb.SignUpRequest) (*pb.SignUpResponse, error) {
- return nil, nil
- }
- func (uc *UserUsecase) Unregister(ctx context.Context, req *pb.UnregisterRequest) (*pb.UnregisterResponse, error) {
- return nil, nil
- }
- func (uc *UserUsecase) ResetPassword(ctx context.Context, req *pb.ResetPasswordRequest) (*pb.ResetPasswordResponse, error) {
- return nil, nil
- }
- func (uc *UserUsecase) RetrievePassword(ctx context.Context, req *pb.RetrievePasswordRequest) (*pb.RetrievePasswordResponse, error) {
- return nil, nil
- }
- func (uc *UserUsecase) SMSCode(ctx context.Context, req *pb.SMSCodeRequest) (*pb.SMSCodeResponse, error) {
- return nil, nil
- }
|