mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-24 18:10:24 +08:00
16 lines
275 B
Go
16 lines
275 B
Go
package router
|
|
|
|
import (
|
|
"mayfly-go/internal/sys/api"
|
|
"mayfly-go/pkg/req"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func InitCaptchaRouter(router *gin.RouterGroup) {
|
|
captcha := router.Group("sys/captcha")
|
|
{
|
|
req.NewGet("", api.GenerateCaptcha).DontNeedToken().Group(captcha)
|
|
}
|
|
}
|