Files
coder/enterprise/cli/root.go
T
2022-10-27 16:49:35 -05:00

22 lines
323 B
Go

package cli
import (
"github.com/spf13/cobra"
agpl "github.com/coder/coder/cli"
)
func enterpriseOnly() []*cobra.Command {
return []*cobra.Command{
server(),
features(),
licenses(),
groups(),
}
}
func EnterpriseSubcommands() []*cobra.Command {
all := append(agpl.Core(), enterpriseOnly()...)
return all
}