2021-07-17 14:18:52 +08:00
|
|
|
package service
|
|
|
|
|
|
|
|
import (
|
2021-08-23 23:13:24 +08:00
|
|
|
"github.com/flipped-aurora/gin-vue-admin/server/service/example"
|
|
|
|
"github.com/flipped-aurora/gin-vue-admin/server/service/system"
|
2021-07-17 14:18:52 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
type ServiceGroup struct {
|
2022-04-12 17:57:11 +08:00
|
|
|
SystemServiceGroup system.ServiceGroup
|
|
|
|
ExampleServiceGroup example.ServiceGroup
|
2021-07-17 14:18:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
var ServiceGroupApp = new(ServiceGroup)
|