You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
382 B

  1. package v1
  2. import (
  3. "github.com/flipped-aurora/gin-vue-admin/server/api/v1/autocode"
  4. "github.com/flipped-aurora/gin-vue-admin/server/api/v1/example"
  5. "github.com/flipped-aurora/gin-vue-admin/server/api/v1/system"
  6. )
  7. type ApiGroup struct {
  8. SystemApiGroup system.ApiGroup
  9. ExampleApiGroup example.ApiGroup
  10. AutoCodeApiGroup autocode.ApiGroup
  11. }
  12. var ApiGroupApp = new(ApiGroup)