blob: 29d44e8ace95c2c98dc3262740218da4ceb853bf [file] [log] [blame]
package main
import (
"github.com/spf13/cobra"
)
// rootCmd represents the base command when called without any subcommands
var rootCmd = &cobra.Command{
Use: "metroctl",
Short: "metroctl controls Metropolis nodes and clusters.",
}
func main() {
cobra.CheckErr(rootCmd.Execute())
}