19 lines
420 B
Go
Executable File
19 lines
420 B
Go
Executable File
package router
|
|
|
|
import (
|
|
"91porn-server/web/api/bannerjumpctrl"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
// bannerJumpRouter 限时Banner活动管理
|
|
func bannerJumpRouter(router *gin.RouterGroup) {
|
|
group := router.Group("/bannerjump")
|
|
{
|
|
group.GET("/list", bannerjumpctrl.List)
|
|
group.POST("/create", bannerjumpctrl.Create)
|
|
group.POST("/update", bannerjumpctrl.Update)
|
|
group.POST("/delete", bannerjumpctrl.Delete)
|
|
}
|
|
}
|