mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-31 22:18:07 +08:00
15 lines
256 B
Go
15 lines
256 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
|
||
|
operationService = service.ServiceGroupApp.OperationService
|
||
|
)
|