feat: 互动处理

This commit is contained in:
Blizzard
2026-03-05 16:54:25 +08:00
parent 74b252550b
commit 2583b5f302
30 changed files with 412 additions and 119 deletions
+15
View File
@@ -0,0 +1,15 @@
package radio
import "github.com/gin-gonic/gin"
type VipRouter struct{}
func (r *VipRouter) InitVipRouter(Router *gin.RouterGroup) {
vipRouter := Router.Group("/vip")
{
vipRouter.POST("config/update", vipApi.UpdateVipConfig)
vipRouter.POST("config/detail", vipApi.VipConfigDetail)
// 开通vip
vipRouter.POST("vip", vipApi.VipVip)
}
}