This commit is contained in:
Sun
2023-11-08 21:53:07 +08:00
commit 211c3071dc
245 changed files with 39293 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
package api_v1
import (
"sun-panel/api/api_v1/openness"
"sun-panel/api/api_v1/panel"
"sun-panel/api/api_v1/system"
)
type ApiGroup struct {
ApiSystem system.ApiSystem // 系统功能api
ApiOpen openness.ApiPpenness
ApiPanel panel.ApiPanel
}
var ApiGroupApp = new(ApiGroup)