enter.go 309 B

1234567891011121314151617
  1. package router
  2. import (
  3. "server/router/devices"
  4. "server/router/example"
  5. "server/router/project"
  6. "server/router/system"
  7. )
  8. type RouterGroup struct {
  9. System system.RouterGroup
  10. Example example.RouterGroup
  11. Project project.RouterGroup
  12. Devices devices.RouterGroup
  13. }
  14. var RouterGroupApp = new(RouterGroup)