This commit is contained in:
asteam
2025-09-26 12:21:29 +03:00
parent befff7acd9
commit 84a090f9e8
19 changed files with 534 additions and 242 deletions

View File

@@ -320,3 +320,20 @@ type ListTypes struct {
// Entry count
EntryCount uint64 `json:"entryCount"`
}
type MigrateStatus struct {
// Type
Type int `json:"type"`
// Copy speed
Bandwidth int `json:"bandwidth"`
// Current progress
Cur interface{} `json:"cur"`
// Total size
End interface{} `json:"end"`
// Progress percent
ProgressPercent int `json:"progress_percent"`
}