chore: update backup

This commit is contained in:
henry.chen
2025-07-17 10:52:43 +08:00
parent a0b41d08bd
commit be0280ac56
7 changed files with 189 additions and 153 deletions

View File

@@ -0,0 +1,7 @@
package to
// BackupRestorer 备份存储接口
type BackupRestorer interface {
Upload(path string) error
Download() (path string, err error)
}