rsteube b9db5e70fe moved completers to subdirectory
added binary as multi completer
added completers
2020-05-14 21:08:07 +02:00

18 lines
277 B
Go

package cmd
import (
"github.com/spf13/cobra"
)
var svnCmd = &cobra.Command{
Use: "svn",
Short: "Bidirectional operation between a Subversion repository and Git",
Run: func(cmd *cobra.Command, args []string) {
},
}
func init() {
rootCmd.AddCommand(svnCmd)
}