You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
422 B
18 lines
422 B
package system
|
|
|
|
import (
|
|
v1 "github.com/flipped-aurora/gin-vue-admin/server/api/v1"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
type BaseRouter struct{}
|
|
|
|
func (s *BaseRouter) InitBaseRouter(Router *gin.RouterGroup) (R gin.IRoutes) {
|
|
baseRouter := Router.Group("base")
|
|
baseApi := v1.ApiGroupApp.SystemApiGroup.BaseApi
|
|
{
|
|
baseRouter.POST("login", baseApi.Login)
|
|
baseRouter.POST("captcha", baseApi.Captcha)
|
|
}
|
|
return baseRouter
|
|
}
|