mirror of
https://github.com/octoleo/restic.git
synced 2024-11-15 01:34:06 +00:00
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)
|
||
|
}
|