// ================================================================================= // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT. // ================================================================================= package user import ( "context" "cris/api/user/v1" ) type IUserV1 interface { UserRegister(ctx context.Context, req *v1.UserRegisterReq) (res *v1.UserCommonRes, err error) UserLogin(ctx context.Context, req *v1.UserLoginReq) (res *v1.UserCommonRes, err error) }