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

Method features

enterprise/cli/features.go:18–31  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

16)
17
18func (r *RootCmd) features() *serpent.Command {
19 cmd := &serpent.Command{
20 Short: "List Enterprise features",
21 Use: "features",
22 Aliases: []string{"feature"},
23 Handler: func(inv *serpent.Invocation) error {
24 return inv.Command.HelpHandler(inv)
25 },
26 Children: []*serpent.Command{
27 r.featuresList(),
28 },
29 }
30 return cmd
31}
32
33func (r *RootCmd) featuresList() *serpent.Command {
34 var (

Callers 1

enterpriseOnlyMethod · 0.95

Calls 1

featuresListMethod · 0.95

Tested by

no test coverage detected