This commit is contained in:
eson
2023-08-29 18:06:39 +08:00
parent 7a2b66f5ab
commit 15692d6075
10 changed files with 158 additions and 7 deletions

View File

@@ -33,10 +33,18 @@ service auth {
@handler UserResetPasswordHandler
post /api/auth/reset/password(RequestUserResetPassword) returns (response);
@handler DebugAuthDeleteHandler
post /api/debug/auth/delete(RequestAuthDelete) returns (response);
}
type (
// RequestAuthDelete 用于debug
RequestAuthDelete {
Email string `json:"email"`
}
// UserAddAddressHandler 用户登录请求结构
RequestUserLogin {
Email string `json:"email"`