enter.go 257 B

123456789101112131415
  1. package v1
  2. import (
  3. "server/api/v1/example"
  4. "server/api/v1/system"
  5. "server/api/v1/vehicle"
  6. )
  7. type ApiGroup struct {
  8. SystemApiGroup system.ApiGroup
  9. ExampleApiGroup example.ApiGroup
  10. VehicleApiGroup vehicle.ApiGroup
  11. }
  12. var ApiGroupApp = new(ApiGroup)