Files
eiblog/cmd/backup/handler/timer/to/to.go
2025-07-17 10:52:43 +08:00

8 lines
147 B
Go

package to
// BackupRestorer 备份存储接口
type BackupRestorer interface {
Upload(path string) error
Download() (path string, err error)
}