mirror of
https://github.com/kopia/kopia.git
synced 2026-02-01 02:03:31 -05:00
Reader methods go to repo.Reader and write methods go to repo.Writer Switched usage to new interfaces based on linter errors.
9 lines
230 B
Go
9 lines
230 B
Go
package cli
|
|
|
|
var snapshotRestoreCommand = snapshotCommands.Command("restore", restoreCommandHelp)
|
|
|
|
func init() {
|
|
addRestoreFlags(snapshotRestoreCommand)
|
|
snapshotRestoreCommand.Action(repositoryReaderAction(runRestoreCommand))
|
|
}
|