user.go 507 B

12345678910111213141516
  1. // =================================================================================
  2. // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
  3. // =================================================================================
  4. package user
  5. import (
  6. "context"
  7. "cris/api/user/v1"
  8. )
  9. type IUserV1 interface {
  10. UserRegister(ctx context.Context, req *v1.UserRegisterReq) (res *v1.UserCommonRes, err error)
  11. UserLogin(ctx context.Context, req *v1.UserLoginReq) (res *v1.UserCommonRes, err error)
  12. }