mirror of
https://github.com/coder/coder.git
synced 2025-07-09 11:45:56 +00:00
* Start to port over provisioner daemons PR * Move to Enterprise * Begin adding tests for external registration * Move provisioner daemons query to enterprise * Move around provisioner daemons schema * Add tags to provisioner daemons * make gen * Add user local provisioner daemons * Add provisioner daemons * Add feature for external daemons * Add command to start a provisioner daemon * Add provisioner tags to template push and create * Rename migration files * Fix tests * Fix entitlements test * PR comments * Update migration * Fix FE types
23 lines
347 B
Go
23 lines
347 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(),
|
|
provisionerDaemons(),
|
|
}
|
|
}
|
|
|
|
func EnterpriseSubcommands() []*cobra.Command {
|
|
all := append(agpl.Core(), enterpriseOnly()...)
|
|
return all
|
|
}
|