2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-06 05:03:13 +08:00

refactor: 分离服务与接口

This commit is contained in:
耗子
2023-12-14 01:11:39 +08:00
parent d731efb082
commit 8e84d2553f
43 changed files with 310 additions and 257 deletions

View File

@@ -11,14 +11,15 @@ import (
"github.com/imroc/req/v3"
"panel/app/http/controllers"
"panel/app/internal"
"panel/app/internal/services"
"panel/app/models"
"panel/app/services"
"panel/pkg/tools"
)
type Php82Controller struct {
setting services.Setting
task services.Task
setting internal.Setting
task internal.Task
version string
}