package router import ( "91porn-server/app/api/ai_undress_ctrl" "github.com/gin-gonic/gin" ) func aiUndressRouter(router *gin.RouterGroup) { group := router.Group("/ai/undress") { group.GET("/list", ai_undress_ctrl.List) group.POST("/generate", ai_undress_ctrl.Generate) group.POST("/hide", ai_undress_ctrl.AiUndressHide) } }