Compare commits

...

2 Commits

Author SHA1 Message Date
Robin a6428df723 Merge branch 'feat-IRONFANS-212-Robin' into test 2024-12-16 17:47:12 +08:00
Robin 05dde6d4f2 by Robin at 20241216 2024-12-16 17:46:29 +08:00
1 changed files with 4 additions and 4 deletions

View File

@ -391,10 +391,10 @@ func Init(r *gin.Engine) {
outerVasGroup.POST("create_order", middleware.JSONParamValidator(vasproto.CreateOrderReq{}), CreateOrderOuter)
extVasPayGroup := r.Group("/ext/vas")
extVasPayGroup.POST("alipay_callback", AlipayCallback)
extVasPayGroup.POST("wxpay_callback", WxpayCallback)
extVasPayGroup.POST("yeepay_callback", YeepayCallback)
extVasPayGroup.POST("applepay_callback", ApplepayCallback)
extVasPayGroup.POST("alipay_callback", AlipayCallback, middleware.NotifSender())
extVasPayGroup.POST("wxpay_callback", WxpayCallback, middleware.NotifSender())
extVasPayGroup.POST("applepay_callback", ApplepayCallback, middleware.NotifSender())
extVasPayGroup.POST("yeepay_callback", YeepayCallback, middleware.NotifSender())
opVasPayGroup := r.Group("/op/vas", PrepareOp())
opVasPayGroup.POST("create_order", middleware.JSONParamValidator(vasproto.OpCreateOrderReq{}), OpCreateOrder)