cli: add ssh command to securely connect with nodes over ssh (#3568)

This commit is contained in:
miampf 2025-01-30 12:08:59 +00:00 committed by GitHub
parent e6048e093b
commit 706d1dff15
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
18 changed files with 471 additions and 41 deletions

View file

@ -61,6 +61,7 @@ func NewRootCmd() *cobra.Command {
rootCmd.AddCommand(cmd.NewIAMCmd())
rootCmd.AddCommand(cmd.NewVersionCmd())
rootCmd.AddCommand(cmd.NewInitCmd())
rootCmd.AddCommand(cmd.NewSSHCmd())
rootCmd.AddCommand(cmd.NewMaaPatchCmd())
return rootCmd