mirror of
https://github.com/coder/coder.git
synced 2026-06-03 21:18:24 +00:00
22 lines
323 B
Go
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
|
|
}
|