Files
pg-bkup/pkg/storage/storage.go
Jonas Kaninda 3c8bd91ad1 Migrate storage
2024-11-19 04:03:41 +01:00

15 lines
261 B
Go

package pkg
type Storage interface {
Copy(fileName string) error
CopyFrom(fileName string) error
Prune(retentionDays int) error
Name() string
}
type Backend struct {
// Local Path
LocalPath string
// Remote path or Destination path
RemotePath string
}