enter.go 281 B

12345678910111213
  1. package router
  2. import (
  3. "github.com/flipped-aurora/gin-vue-admin/server/router/example"
  4. "github.com/flipped-aurora/gin-vue-admin/server/router/system"
  5. )
  6. type RouterGroup struct {
  7. System system.RouterGroup
  8. Example example.RouterGroup
  9. }
  10. var RouterGroupApp = new(RouterGroup)