Files
2025-07-17 10:52:43 +08:00

8 lines
131 B
Go

package db
// Storage 备份恢复器
type Storage interface {
Backup(name string) (string, error)
Restore(path string) error
}