enter.go 243 B

123456789101112131415
  1. package router
  2. import (
  3. "lcfns/router/app"
  4. "lcfns/router/isapi"
  5. "lcfns/router/system"
  6. )
  7. type RouterGroup struct {
  8. AppGroup app.RouterGroup
  9. System system.RouterGroup
  10. IsApi isapi.RouterGroup
  11. }
  12. var RouterGroupApp = new(RouterGroup)