package api const ( Path_Identity_Login = "POST /Identity_Login" Path_Identity_Logout = "POST /Identity_Logout" ) type Identity_LoginReq struct { Email string Password string } type Identity_LoginRes struct{} type Identity_LogoutReq struct{} type Identity_LogoutRes struct{} func (r *Identity_LoginReq) Prepare() error { return nil }