add ssh subcommand

This commit is contained in:
miampf 2025-01-02 13:55:21 +01:00
parent e6048e093b
commit 1850d4b327
No known key found for this signature in database
GPG key ID: EF039364B5B6886C
3 changed files with 112 additions and 0 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