mirror of
https://github.com/octoleo/restic.git
synced 2024-12-01 17:23:57 +00:00
17 lines
272 B
Go
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)
|
|
}
|