17 lines
329 B
Go
Executable File
17 lines
329 B
Go
Executable File
package router
|
|
|
|
import (
|
|
"91porn-server/app/api/aiplazactrl"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
// aiPlaza 移动端接口
|
|
func aiPlazaRouter(router *gin.RouterGroup) {
|
|
group := router.Group("/aiplaza")
|
|
{
|
|
group.GET("/list", aiplazactrl.List)
|
|
group.GET("/info", aiplazactrl.Info)
|
|
group.POST("/share", aiplazactrl.Share)
|
|
}
|
|
}
|