Files
huangguo_server/web/router/ai_undress.go
T
rootandClaude Opus 5 8679200f41 Initial commit
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-09-15 13:57:10 +08:00

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)
}
}