Skip to content

Commit

Permalink
Remove alpha modules run execution (#2266)
Browse files Browse the repository at this point in the history
  • Loading branch information
pPrecel authored Nov 29, 2024
1 parent 957c22b commit 6cf083b
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions internal/cmd/alpha/modules/modules.go
Original file line number Diff line number Diff line change
@@ -1,23 +1,15 @@
package modules

import (
"github.com/kyma-project/cli.v3/internal/clierror"
"github.com/kyma-project/cli.v3/internal/cmdcommon"
"github.com/spf13/cobra"
)

func NewModulesCMD(kymaConfig *cmdcommon.KymaConfig) *cobra.Command {
cfg := modulesConfig{
KymaConfig: kymaConfig,
}

cmd := &cobra.Command{
Use: "modules",
Short: "Manage kyma modules.",
Long: `Use this command to manage modules on a kyma cluster.`,
Run: func(_ *cobra.Command, _ []string) {
clierror.Check(listModules(&cfg))
},
}

cmd.AddCommand(NewListCMD(kymaConfig))
Expand Down

0 comments on commit 6cf083b

Please sign in to comment.