2021-07-17 14:18:52 +08:00
|
|
|
package service
|
|
|
|
|
|
|
|
import (
|
2021-08-21 11:01:34 +08:00
|
|
|
"github.com/flipped-aurora/gin-vue-admin/service/autocode"
|
|
|
|
"github.com/flipped-aurora/gin-vue-admin/service/example"
|
|
|
|
"github.com/flipped-aurora/gin-vue-admin/service/system"
|
2021-07-17 14:18:52 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
type ServiceGroup struct {
|
|
|
|
ExampleServiceGroup example.ServiceGroup
|
|
|
|
SystemServiceGroup system.ServiceGroup
|
|
|
|
AutoCodeServiceGroup autocode.ServiceGroup
|
|
|
|
}
|
|
|
|
|
|
|
|
var ServiceGroupApp = new(ServiceGroup)
|