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