package router import ( "91porn-server/app/api/scenebannerctrl" "github.com/gin-gonic/gin" ) func sceneBannerRouter(router *gin.RouterGroup) { group := router.Group("/banner") { group.GET("/list", scenebannerctrl.List) } }