mirror of
https://github.com/YFGaia/dify-plus.git
synced 2026-06-14 20:41:21 +08:00
16 lines
415 B
Go
16 lines
415 B
Go
package service
|
|
|
|
import (
|
|
"github.com/flipped-aurora/gin-vue-admin/server/service/example"
|
|
"github.com/flipped-aurora/gin-vue-admin/server/service/gaia"
|
|
"github.com/flipped-aurora/gin-vue-admin/server/service/system"
|
|
)
|
|
|
|
var ServiceGroupApp = new(ServiceGroup)
|
|
|
|
type ServiceGroup struct {
|
|
SystemServiceGroup system.ServiceGroup
|
|
ExampleServiceGroup example.ServiceGroup
|
|
GaiaServiceGroup gaia.ServiceGroup
|
|
}
|