enter.go 198 B

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