14 lines
225 B
Go
14 lines
225 B
Go
package router
|
|
|
|
import (
|
|
"91porn-server/app/api/officialctrl"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func officialRouter(router *gin.RouterGroup) {
|
|
group := router.Group("/official")
|
|
{
|
|
group.GET("/list", officialctrl.List)
|
|
}
|
|
}
|