mirror of
https://github.com/restic/restic.git
synced 2026-02-15 16:48:41 -05:00
16 lines
272 B
Go
16 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)
|
|
}
|