Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
rsteube committed Oct 15, 2023
1 parent 6c1d200 commit f90284f
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions completers/wezterm_completer/cmd/cli_proxy.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
package cmd

import (
"github.com/rsteube/carapace"
"github.com/spf13/cobra"
)

var cli_proxyCmd = &cobra.Command{
Use: "proxy",
Short: "start rpc proxy pipe",
Run: func(cmd *cobra.Command, args []string) {},
}

func init() {
carapace.Gen(cli_proxyCmd).Standalone()

cli_proxyCmd.Flags().BoolP("help", "h", false, "Print help")
cliCmd.AddCommand(cli_proxyCmd)
}

0 comments on commit f90284f

Please sign in to comment.