feat: cli: add autostart and autostop commands (#922)

* feat: cli: add autostart and autostop commands

* fix: autostart/autostop: add help and usage, hide for now
This commit is contained in:
Cian Johnston
2022-04-08 17:29:07 +01:00
committed by GitHub
parent cb5b228a21
commit 53db17803a
5 changed files with 502 additions and 0 deletions

View File

@ -22,6 +22,8 @@ func workspaces() *cobra.Command {
cmd.AddCommand(workspaceStart())
cmd.AddCommand(ssh())
cmd.AddCommand(workspaceUpdate())
cmd.AddCommand(workspaceAutostart())
cmd.AddCommand(workspaceAutostop())
return cmd
}