mirror of
https://github.com/psviderski/uncloud.git
synced 2026-08-26 19:13:34 +00:00
17 lines
245 B
Go
17 lines
245 B
Go
package machine
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func NewRootCommand() *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "machine",
|
|
Short: "Manage machines in an Uncloud cluster.",
|
|
}
|
|
cmd.AddCommand(
|
|
NewAddCommand(),
|
|
)
|
|
return cmd
|
|
}
|