mirror of
https://github.com/GMWalletApp/epusdt.git
synced 2026-07-07 18:26:16 +00:00
init
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
package route
|
||||
|
||||
import (
|
||||
"github.com/assimon/luuu/controller/comm"
|
||||
"github.com/assimon/luuu/middleware"
|
||||
"github.com/labstack/echo/v4"
|
||||
"net/http"
|
||||
)
|
||||
|
||||
// RegisterRoute 路由注册
|
||||
func RegisterRoute(e *echo.Echo) {
|
||||
e.Any("/", func(c echo.Context) error {
|
||||
return c.String(http.StatusOK, "hello epusdt, https://github.com/assimon/epusdt")
|
||||
})
|
||||
// ==== 支付相关=====
|
||||
payRoute := e.Group("/pay")
|
||||
// 收银台
|
||||
payRoute.GET("/checkout-counter/:trade_id", comm.Ctrl.CheckoutCounter)
|
||||
// 状态检测
|
||||
payRoute.GET("/check-status/:trade_id", comm.Ctrl.CheckStatus)
|
||||
|
||||
apiV1Route := e.Group("/api/v1")
|
||||
// ====订单相关====
|
||||
orderRoute := apiV1Route.Group("/order", middleware.CheckApiSign())
|
||||
// 创建订单
|
||||
orderRoute.POST("/create-transaction", comm.Ctrl.CreateTransaction)
|
||||
}
|
||||
Reference in New Issue
Block a user