2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-27 04:43:30 +00:00
restic/internal/migrations/interface.go

23 lines
475 B
Go
Raw Normal View History

package migrations
import (
"context"
2017-07-23 12:21:03 +00:00
"github.com/restic/restic/internal"
)
// 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
}