1
0
mirror of https://github.com/restic/restic.git synced 2024-06-22 07:26:38 +02:00
restic/cmd/restic/cmd_repair.go

15 lines
185 B
Go
Raw Permalink Normal View History

package main
import (
"github.com/spf13/cobra"
)
var cmdRepair = &cobra.Command{
Use: "repair",
Short: "Repair the repository",
}
func init() {
cmdRoot.AddCommand(cmdRepair)
}