15 lines
233 B
Go
15 lines
233 B
Go
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)
|
|
}
|
|
}
|