You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
582 B
21 lines
582 B
|
1 year ago
|
package routers
|
||
|
|
|
||
|
|
import (
|
||
|
|
handler "server/modules/backend/handler/examine"
|
||
|
|
|
||
|
|
"github.com/gin-gonic/gin"
|
||
|
|
)
|
||
|
|
|
||
|
|
func examine(e *gin.Engine) {
|
||
|
|
e.POST("/examine/pay/callback", handler.PayCallback)
|
||
|
|
e.POST("/examine/withdraw/list", handler.WithdrawList)
|
||
|
|
e.POST("/examine/withdraw/do", handler.WithdrawExamine)
|
||
|
|
e.POST("/examine/withdraw/return", handler.WithdrawReturn)
|
||
|
|
e.POST("/examine/share/list", handler.ShareOrderList)
|
||
|
|
e.POST("/examine/share/do", handler.ShareOrderExamine)
|
||
|
|
|
||
|
|
// e.POST("/examine/tpData", handler.TpData)
|
||
|
|
|
||
|
|
// e.POST("/examine/tpStatistic", handler.TpStatistic)
|
||
|
|
}
|