package cmd import ( "github.com/rsteube/carapace" "github.com/spf13/cobra" ) var http_backendCmd = &cobra.Command{ Use: "http-backend", Short: "Server side implementation of Git over HTTP", Run: func(cmd *cobra.Command, args []string) {}, GroupID: groups[group_low_level_synching].ID, } func init() { carapace.Gen(http_backendCmd).Standalone() rootCmd.AddCommand(http_backendCmd) }