blob: 29d44e8ace95c2c98dc3262740218da4ceb853bf [file] [log] [blame]
Lorenz Brun6adf8842021-10-05 13:39:11 +02001package main
2
3import (
4 "github.com/spf13/cobra"
5)
6
7// rootCmd represents the base command when called without any subcommands
8var rootCmd = &cobra.Command{
9 Use: "metroctl",
10 Short: "metroctl controls Metropolis nodes and clusters.",
11}
12
13func main() {
14 cobra.CheckErr(rootCmd.Execute())
15}