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

Method groups

enterprise/cli/groups.go:5–22  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

3import "github.com/coder/serpent"
4
5func (r *RootCmd) groups() *serpent.Command {
6 cmd := &serpent.Command{
7 Use: "groups",
8 Short: "Manage groups",
9 Aliases: []string{"group"},
10 Handler: func(inv *serpent.Invocation) error {
11 return inv.Command.HelpHandler(inv)
12 },
13 Children: []*serpent.Command{
14 r.groupCreate(),
15 r.groupList(),
16 r.groupEdit(),
17 r.groupDelete(),
18 },
19 }
20
21 return cmd
22}

Callers 1

enterpriseOnlyMethod · 0.95

Calls 4

groupCreateMethod · 0.95
groupListMethod · 0.95
groupEditMethod · 0.95
groupDeleteMethod · 0.95

Tested by

no test coverage detected