15 lines
218 B
Go
15 lines
218 B
Go
package router
|
|
|
|
import (
|
|
"91porn-server/app/api/tonectrl"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func toneRouter(router *gin.RouterGroup) {
|
|
group := router.Group("/tone")
|
|
{
|
|
group.POST("/vid/list", tonectrl.VidList)
|
|
}
|
|
}
|