118d599d0a
The old name still works, but is deprecated.
14 lines
185 B
Go
14 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)
|
|
}
|