19 lines
434 B
Go
19 lines
434 B
Go
package router
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
|
|
"91porn-server/web/api/ai_undress_ctrl"
|
|
)
|
|
|
|
func aiUndressRouter(router *gin.RouterGroup) {
|
|
group := router.Group("/ai/undress")
|
|
{
|
|
group.GET("/list", ai_undress_ctrl.List)
|
|
group.POST("/update", ai_undress_ctrl.Update)
|
|
group.POST("/auto", ai_undress_ctrl.Auto)
|
|
group.POST("/auto/batch", ai_undress_ctrl.AutoBatch)
|
|
group.POST("/callback", ai_undress_ctrl.Callback)
|
|
}
|
|
}
|