enter.go 448 B

123456789101112131415161718192021
  1. package v1
  2. import (
  3. "server/api/v1/admin"
  4. "server/api/v1/crm"
  5. "server/api/v1/example"
  6. "server/api/v1/storehouse"
  7. "server/api/v1/system"
  8. "server/api/v1/workflow"
  9. )
  10. type ApiGroup struct {
  11. SystemApiGroup system.ApiGroup
  12. ExampleApiGroup example.ApiGroup
  13. AdminApiGroup admin.ApiGroup
  14. WorkflowApiGroup workflow.ApiGroup
  15. StorehouseApiGroup storehouse.ApiGroup
  16. CRMApiGroup crm.ApiGroup
  17. }
  18. var ApiGroupApp = new(ApiGroup)