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
15 lines
382 B
package v1
|
|
|
|
import (
|
|
"github.com/flipped-aurora/gin-vue-admin/server/api/v1/autocode"
|
|
"github.com/flipped-aurora/gin-vue-admin/server/api/v1/example"
|
|
"github.com/flipped-aurora/gin-vue-admin/server/api/v1/system"
|
|
)
|
|
|
|
type ApiGroup struct {
|
|
ExampleApiGroup example.ApiGroup
|
|
SystemApiGroup system.ApiGroup
|
|
AutoCodeApiGroup autocode.ApiGroup
|
|
}
|
|
|
|
var ApiGroupApp = new(ApiGroup)
|