Skip to content

Commit c9bc38e

Browse files
Remove healthcheck command
- Remove healthcheck import and registration from cmd.go - Delete pkg/cmd/healthcheck directory and all related files - Healthcheck command was identified as an additional removal request This further streamlines the CLI by removing the backend health checking functionality from the core CLI commands. Co-Authored-By: Alec Fong <[email protected]>
1 parent 8db4a51 commit c9bc38e

File tree

2 files changed

+0
-53
lines changed

2 files changed

+0
-53
lines changed

pkg/cmd/cmd.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import (
99
"github.com/brevdev/brev-cli/pkg/cmd/copy"
1010
"github.com/brevdev/brev-cli/pkg/cmd/create"
1111
"github.com/brevdev/brev-cli/pkg/cmd/delete"
12-
"github.com/brevdev/brev-cli/pkg/cmd/healthcheck"
1312
"github.com/brevdev/brev-cli/pkg/cmd/initfile"
1413
"github.com/brevdev/brev-cli/pkg/cmd/invite"
1514
"github.com/brevdev/brev-cli/pkg/cmd/login"
@@ -240,7 +239,6 @@ func createCmdTree(cmd *cobra.Command, t *terminal.Terminal, loginCmdStore *stor
240239
cmd.AddCommand(profile.NewCmdProfile(t, loginCmdStore, noLoginCmdStore))
241240
cmd.AddCommand(refresh.NewCmdRefresh(t, loginCmdStore))
242241
cmd.AddCommand(proxy.NewCmdProxy(t, noLoginCmdStore))
243-
cmd.AddCommand(healthcheck.NewCmdHealthcheck(t, noLoginCmdStore))
244242

245243
cmd.AddCommand(setupworkspace.NewCmdSetupWorkspace(noLoginCmdStore))
246244
}

pkg/cmd/healthcheck/healthcheck.go

Lines changed: 0 additions & 51 deletions
This file was deleted.

0 commit comments

Comments
 (0)