Files
mayfly-go/server/internal/auth/router/router.go

11 lines
170 B
Go
Raw Normal View History

2023-07-22 20:51:46 +08:00
package router
2024-12-08 13:04:23 +08:00
import "github.com/gin-gonic/gin"
2023-07-22 20:51:46 +08:00
func Init(router *gin.RouterGroup) {
2024-12-08 13:04:23 +08:00
InitCaptcha(router)
InitAccount(router)
InitOauth2(router)
InitLdap(router)
2023-07-22 20:51:46 +08:00
}