2
2
mirror of https://github.com/octoleo/restic.git synced 2025-01-09 01:21:15 +00:00
restic/cmd/restic/cmd_repair.go
2024-08-23 23:49: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)
}