mirror of
https://github.com/octoleo/restic.git
synced 2024-11-02 11:46:36 +00:00
23 lines
482 B
Go
23 lines
482 B
Go
package migrations
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/restic/restic/internal/restic"
|
|
)
|
|
|
|
// Migration implements a data migration.
|
|
type Migration interface {
|
|
// Check returns true if the migration can be applied to a repo.
|
|
Check(context.Context, restic.Repository) (bool, error)
|
|
|
|
// Apply runs the migration.
|
|
Apply(context.Context, restic.Repository) error
|
|
|
|
// Name returns a short name.
|
|
Name() string
|
|
|
|
// Descr returns a description what the migration does.
|
|
Desc() string
|
|
}
|