修复模板的问题

This commit is contained in:
eson
2023-07-21 10:28:17 +08:00
parent fd1a56c11a
commit 65d0663d28
17 changed files with 334 additions and 86 deletions

16
server_api/assistant.api Normal file
View File

@@ -0,0 +1,16 @@
syntax = "v1"
info (
title: // TODO: add title
desc: // TODO: add description
author: ""
email: ""
)
import "basic.api"
service assistant {
// 处理重定向
@handler RedirectHandler
get /api/redirect(request) returns (response);
}

View File

@@ -52,11 +52,11 @@ service home-user-auth {
@handler UserGoogleLoginHandler
get /api/user/oauth2/login/google(RequestGoogleLogin) returns (response);
//订单列表
@handler UserOrderListHandler
get /api/user/order-list (UserOrderListReq) returns (response);
//取消订单
@handler UserOrderCancelHandler
get /api/user/order-cancel (UserOrderCancelReq) returns (response);