2020-05-16 23:04:32 +02:00

18 lines
270 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)
}