mirror of https://github.com/1Panel-dev/1Panel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
312 B
16 lines
312 B
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
|
|
)
|