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. var RouterGroupApp = new(RouterGroup)
  7. type RouterGroup struct {
  8. System system.RouterGroup
  9. Example example.RouterGroup
  10. }