mirror of https://github.com/1Panel-dev/1Panel
23 lines
605 B
Go
23 lines
605 B
Go
|
package router
|
||
|
|
||
|
import (
|
||
|
v1 "github.com/1Panel-dev/1Panel/core/app/api/v1"
|
||
|
"github.com/gin-gonic/gin"
|
||
|
)
|
||
|
|
||
|
type BaseRouter struct{}
|
||
|
|
||
|
func (s *BaseRouter) InitRouter(Router *gin.RouterGroup) {
|
||
|
baseRouter := Router.Group("auth")
|
||
|
baseApi := v1.ApiGroupApp.BaseApi
|
||
|
{
|
||
|
baseRouter.GET("/captcha", baseApi.Captcha)
|
||
|
baseRouter.POST("/mfalogin", baseApi.MFALogin)
|
||
|
baseRouter.POST("/login", baseApi.Login)
|
||
|
baseRouter.GET("/issafety", baseApi.CheckIsSafety)
|
||
|
baseRouter.POST("/logout", baseApi.LogOut)
|
||
|
baseRouter.GET("/demo", baseApi.CheckIsDemo)
|
||
|
baseRouter.GET("/language", baseApi.GetLanguage)
|
||
|
}
|
||
|
}
|