Skip to content
2 changes: 2 additions & 0 deletions pkg/cmd/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import (
"github.com/brevdev/brev-cli/pkg/cmd/create"
"github.com/brevdev/brev-cli/pkg/cmd/delete"
"github.com/brevdev/brev-cli/pkg/cmd/envvars"
"github.com/brevdev/brev-cli/pkg/cmd/find"
"github.com/brevdev/brev-cli/pkg/cmd/fu"
"github.com/brevdev/brev-cli/pkg/cmd/healthcheck"
"github.com/brevdev/brev-cli/pkg/cmd/hello"
Expand Down Expand Up @@ -287,6 +288,7 @@ func createCmdTree(cmd *cobra.Command, t *terminal.Terminal, loginCmdStore *stor
cmd.AddCommand(recreate.NewCmdRecreate(t, loginCmdStore))
cmd.AddCommand(writeconnectionevent.NewCmdwriteConnectionEvent(t, loginCmdStore))
cmd.AddCommand(updatemodel.NewCmdupdatemodel(t, loginCmdStore))
cmd.AddCommand(find.NewCmdFind(t, noLoginCmdStore))
}

func hasQuickstartCommands(cmd *cobra.Command) bool {
Expand Down
Loading
Loading