This commit is contained in:
jiangyong27 2025-03-27 20:55:22 +08:00
parent dba365ff16
commit bef38983f5
1 changed files with 1 additions and 1 deletions

View File

@ -17,8 +17,8 @@ func initRoutge(engine *gin.Engine) {
noTokenGroup.Use(base.Recovery).Use(base.Before)
noTokenGroup.POST("/pay", controller.NewPayment().Pay)
noTokenGroup.GET("/payment/auth/alipay", controller.NewPayment().AlipayAuth)
noTokenGroup.POST("/payment", controller.NewPayment().Pay)
noTokenGroup.GET("/payment/auth/alipay", controller.NewPayment().AlipayAuth)
apiGroup.GET("/payment", controller.NewPayment().List)
apiGroup.GET("/payment/suggest", controller.NewPayment().Suggest)
noTokenGroup.Any("/qyweixin/approve/:cid", controller.NewQyWeixin().Approve)