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.
1Panel/backend/app/api/v1/entry.go

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
)