package api import ( "atlas9.dev/c/core" ) const ( Path_Account_Register = "POST /Account_Register" Path_Account_Verify = "POST /Account_Verify" Path_Account_ResendVerification = "POST /Account_ResendVerification" Path_Account_RequestPasswordReset = "POST /Account_RequestPasswordReset" Path_Account_ResetPassword = "POST /Account_ResetPassword" Path_Account_Task_SendEmailVerification = "POST /Account_Task_SendEmailVerification" Path_Account_Task_SendPasswordReset = "POST /Account_Task_SendPasswordReset" ) type Account_RegisterReq struct { Email string Password string } type Account_RegisterRes struct { UserID core.ID } type Account_VerifyReq struct { Token string } type Account_VerifyRes struct{} type Account_ResendVerificationReq struct { Email string } type Account_ResendVerificationRes struct{} type Account_RequestPasswordResetReq struct { Email string } type Account_RequestPasswordResetRes struct{} type Account_ResetPasswordReq struct { Token string Password string } type Account_ResetPasswordRes struct{} type Account_Task_SendEmailVerificationReq struct { Email string Token string } type Account_Task_SendEmailVerificationRes struct{} type Account_Task_SendPasswordResetReq struct { Email string Token string } type Account_Task_SendPasswordResetRes struct{} func (r *Account_RegisterReq) Prepare() error { return nil } func (r *Account_VerifyReq) Prepare() error { return nil } func (r *Account_ResendVerificationReq) Prepare() error { return nil } func (r *Account_RequestPasswordResetReq) Prepare() error { return nil } func (r *Account_ResetPasswordReq) Prepare() error { return nil } func (r *Account_Task_SendEmailVerificationReq) Prepare() error { return nil } func (r *Account_Task_SendPasswordResetReq) Prepare() error { return nil }