Files
huangguo_server/app/router/hotspot.go
T
rootandClaude Opus 5 8679200f41 Initial commit
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-09-15 13:57:10 +08:00

19 lines
524 B
Go

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) //发现精彩
}
}