Files
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
296 B
Go

package router
import (
"91porn-server/app/api/smsctrl"
"91porn-server/app/middleware/limitHandler"
"github.com/gin-gonic/gin"
)
func smsRoute(router *gin.RouterGroup) {
group := router.Group("/sms")
{
group.POST("/captcha", limitHandler.FilterSMSCaptchaByIP, smsctrl.SendCaptcha)
}
}