enter.go 255 B

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