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

3 years ago
3 years ago
3 years ago
  1. package system
  2. import (
  3. v1 "github.com/flipped-aurora/gin-vue-admin/server/api/v1"
  4. "github.com/gin-gonic/gin"
  5. )
  6. type BaseRouter struct{}
  7. func (s *BaseRouter) InitBaseRouter(Router *gin.RouterGroup) (R gin.IRoutes) {
  8. baseRouter := Router.Group("base")
  9. baseApi := v1.ApiGroupApp.SystemApiGroup.BaseApi
  10. {
  11. baseRouter.POST("login", baseApi.Login)
  12. baseRouter.POST("captcha", baseApi.Captcha)
  13. }
  14. return baseRouter
  15. }