mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-26 20:19:15 +08:00
17 lines
314 B
Go
17 lines
314 B
Go
package service
|
|
|
|
import "github.com/1Panel-dev/1Panel/app/repo"
|
|
|
|
type ServiceGroup struct {
|
|
UserService
|
|
OperationService
|
|
}
|
|
|
|
var ServiceGroupApp = new(ServiceGroup)
|
|
|
|
var (
|
|
userRepo = repo.RepoGroupApp.UserRepo
|
|
operationRepo = repo.RepoGroupApp.OperationRepo
|
|
commonRepo = repo.RepoGroupApp.CommonRepo
|
|
)
|