Initial commit

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
2026-09-15 13:57:10 +08:00
co-authored by Claude Opus 5
commit 8679200f41
1897 changed files with 257900 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
package router
import (
"91porn-server/web/api/rechargectrl"
"91porn-server/web/api/withdrawctrl"
"github.com/gin-gonic/gin"
)
// defrayRouter 支付回调
func defrayRouter(router *gin.RouterGroup) {
groupDefray := router.Group("/defray/callback")
{
//大白鲨充值回调
groupDefray.POST("/dabaisha", rechargectrl.DaBaiShaCallBack)
//鲨鱼充值回调
groupDefray.POST("/shark", rechargectrl.SharkCallBack)
//乐支付充值回调
groupDefray.POST("/lucky", rechargectrl.LuckyCallBack)
//金鱼充值回调
//大金鱼充值回调
groupDefray.POST("/goldfishPlus", rechargectrl.GoldfishPlusCallBack)
//艾支付充值回调
groupDefray.GET("/izhifu", rechargectrl.IZhiFuCallBack)
//dx支付充值回调
groupDefray.POST("/dx", rechargectrl.DXZhiFuCallBack)
//雷火支付充值回调
groupDefray.POST("/leihuo", rechargectrl.LeiHuoCallBack)
//中付支付充值回调
groupDefray.POST("/zhongfu", rechargectrl.ZhongFuCallBack)
//yilianfu支付充值回调
groupDefray.POST("/yilianfu", rechargectrl.YiLianFuCallBack)
//音色
groupDefray.POST("/echg/goldfish", withdrawctrl.GoldFishCallBack)
}
router.POST("/withdraw/callback", withdrawctrl.YinseCallBack)
}