mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-29 23:09:10 +08:00
16 lines
312 B
Go
16 lines
312 B
Go
package v1
|
|
|
|
import "github.com/1Panel-dev/1Panel/app/service"
|
|
|
|
type ApiGroup struct {
|
|
BaseApi
|
|
}
|
|
|
|
var ApiGroupApp = new(ApiGroup)
|
|
|
|
var (
|
|
userService = service.ServiceGroupApp.UserService
|
|
hostService = service.ServiceGroupApp.HostService
|
|
operationService = service.ServiceGroupApp.OperationService
|
|
)
|