mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-31 22:18:07 +08:00
19 lines
371 B
Go
19 lines
371 B
Go
package service
|
|
|
|
import "github.com/1Panel-dev/1Panel/app/repo"
|
|
|
|
type ServiceGroup struct {
|
|
UserService
|
|
HostService
|
|
OperationService
|
|
}
|
|
|
|
var ServiceGroupApp = new(ServiceGroup)
|
|
|
|
var (
|
|
userRepo = repo.RepoGroupApp.UserRepo
|
|
hostRepo = repo.RepoGroupApp.HostRepo
|
|
operationRepo = repo.RepoGroupApp.OperationRepo
|
|
commonRepo = repo.RepoGroupApp.CommonRepo
|
|
)
|