mirror of
https://github.com/eiblog/eiblog.git
synced 2026-02-04 13:52:26 +08:00
8 lines
147 B
Go
8 lines
147 B
Go
package to
|
|
|
|
// BackupRestorer 备份存储接口
|
|
type BackupRestorer interface {
|
|
Upload(path string) error
|
|
Download() (path string, err error)
|
|
}
|