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
+18
View File
@@ -0,0 +1,18 @@
package router
import (
"91porn-server/app/api/hotspotctr"
"github.com/gin-gonic/gin"
)
func hotspotRouter(router *gin.RouterGroup) {
group := router.Group("/hotspot")
{
group.GET("/htag", hotspotctr.HotTag) //热门话题
group.GET("/hotvid/list", hotspotctr.HotVidList) //今日最热视屏
group.GET("/rank", hotspotctr.Rank) //排行榜
group.GET("/area", hotspotctr.Area) //专区
group.GET("/wonder/list", hotspotctr.WonderTagList) //发现精彩
}
}