Files
huangguo_server/app/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

17 lines
340 B
Go

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