14 lines
271 B
Go
14 lines
271 B
Go
|
|
package service
|
||
|
|
|
||
|
|
import (
|
||
|
|
"myschools.me/lemons/admin/service/example"
|
||
|
|
"myschools.me/lemons/admin/service/system"
|
||
|
|
)
|
||
|
|
|
||
|
|
var ServiceGroupApp = new(ServiceGroup)
|
||
|
|
|
||
|
|
type ServiceGroup struct {
|
||
|
|
SystemServiceGroup system.ServiceGroup
|
||
|
|
ExampleServiceGroup example.ServiceGroup
|
||
|
|
}
|