carapace-bin/completers/git_completer/cmd/http_backend_generated.go
2023-04-12 09:09:14 +02:00

20 lines
405 B
Go

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)
}