blob: e82cb95cfd9553e8a9691ff90ee717fae8682f74 [file] [log] [blame]
Serge Bazanskibeec27c2024-10-31 12:27:08 +00001package main
2
3import "github.com/spf13/cobra"
4
5var clusterCmd = &cobra.Command{
6 Short: "Manages a running Metropolis cluster.",
7 Use: "cluster",
8}
9
10func init() {
11 rootCmd.AddCommand(clusterCmd)
12}