Files
huangguo_server/web/router/extend.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

16 lines
270 B
Go

package router
import (
"91porn-server/web/api/extctrl"
"github.com/gin-gonic/gin"
)
func extendRouter(router *gin.RouterGroup) {
g := router.Group("/extend")
{
g.GET("/viewCaptcha", extctrl.ViewCaptcha)
g.POST("/syncServerFile", extctrl.SyncServerFile)
}
}