enter.go 201 B

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