Skip to content

Commit

Permalink
Merge pull request #1965 from rsteube/git-httpbackend
Browse files Browse the repository at this point in the history
git: http-backend
  • Loading branch information
rsteube authored Nov 1, 2023
2 parents dbd33d1 + f874aa7 commit 10c4a8d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ import (
"github.com/spf13/cobra"
)

var http_backendCmd = &cobra.Command{
var httpBackendCmd = &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()
carapace.Gen(httpBackendCmd).Standalone()

rootCmd.AddCommand(http_backendCmd)
rootCmd.AddCommand(httpBackendCmd)
}

0 comments on commit 10c4a8d

Please sign in to comment.