chore: add m alias for machine command

This commit is contained in:
Pavel Sviderski
2025-05-21 15:46:31 +10:00
parent 735e36012a
commit 7edd8f2976
+3 -2
View File
@@ -6,8 +6,9 @@ import (
func NewRootCommand() *cobra.Command {
cmd := &cobra.Command{
Use: "machine",
Short: "Manage machines in an Uncloud cluster.",
Use: "machine",
Aliases: []string{"m"},
Short: "Manage machines in an Uncloud cluster.",
}
cmd.AddCommand(
NewAddCommand(),