enter.go 331 B

12345678910111213141516
  1. package router
  2. import (
  3. "wails-app/internal/router/example"
  4. "wails-app/internal/router/system"
  5. "wails-app/internal/router/vehicle"
  6. )
  7. type RouterGroup struct {
  8. System system.RouterGroup
  9. Example example.RouterGroup
  10. Vehicle vehicle.RouterGroup
  11. Dashboard system.DashboardRouter
  12. }
  13. var RouterGroupApp = new(RouterGroup)