MCPcopy Index your code
hub / github.com/coder/coder / support

Method support

cli/support.go:30–42  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

28)
29
30func (r *RootCmd) support() *serpent.Command {
31 supportCmd := &serpent.Command{
32 Use: "support",
33 Short: "Commands for troubleshooting issues with a Coder deployment.",
34 Handler: func(inv *serpent.Invocation) error {
35 return inv.Command.HelpHandler(inv)
36 },
37 Children: []*serpent.Command{
38 r.supportBundle(),
39 },
40 }
41 return supportCmd
42}
43
44var supportBundleBlurb = cliui.Bold("This will collect the following information:\n") +
45 ` - Coder deployment version

Callers 1

CoreSubcommandsMethod · 0.95

Calls 1

supportBundleMethod · 0.95

Tested by

no test coverage detected