2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 13:47:15 +08:00

feat: 添加面板修复命令

This commit is contained in:
耗子
2024-10-15 03:14:38 +08:00
parent d03facb556
commit 182d9b1c8c
7 changed files with 127 additions and 14 deletions

View File

@@ -1,7 +1,10 @@
package types
import "time"
type BackupFile struct {
Name string `json:"name"`
Path string `json:"path"`
Size string `json:"size"`
Name string `json:"name"`
Path string `json:"path"`
Size string `json:"size"`
Time time.Time `json:"time"`
}