| 10 | } |
| 11 | |
| 12 | func (r *RootCmd) enterpriseOnly() []*serpent.Command { |
| 13 | return []*serpent.Command{ |
| 14 | // These commands exist in AGPL, but we use a different implementation |
| 15 | // in enterprise: |
| 16 | r.Server(nil), |
| 17 | r.provisionerDaemons(), |
| 18 | agplcli.ExperimentalCommand(append(r.AGPLExperimental(), r.enterpriseExperimental()...)), |
| 19 | |
| 20 | // New commands that don't exist in AGPL: |
| 21 | r.boundary(), |
| 22 | r.workspaceProxy(), |
| 23 | r.features(), |
| 24 | r.licenses(), |
| 25 | r.groups(), |
| 26 | r.prebuilds(), |
| 27 | r.provisionerd(), |
| 28 | r.externalWorkspaces(), |
| 29 | r.aibridge(), |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | func (*RootCmd) enterpriseExperimental() []*serpent.Command { |
| 34 | return []*serpent.Command{} |