2
2
mirror of https://github.com/octoleo/restic.git synced 2024-12-01 17:23:57 +00:00
restic/cmd/restic/cmd_repair.go
2024-08-30 12:45:20 +02:00

17 lines
272 B
Go

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