mirror of
https://github.com/octoleo/restic.git
synced 2024-11-16 10:05:25 +00:00
118d599d0a
The old name still works, but is deprecated.
15 lines
185 B
Go
15 lines
185 B
Go
package main
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var cmdRepair = &cobra.Command{
|
|
Use: "repair",
|
|
Short: "Repair the repository",
|
|
}
|
|
|
|
func init() {
|
|
cmdRoot.AddCommand(cmdRepair)
|
|
}
|