blob: a474061e1a52ee76fc4cc6a32d0b7a4a468417f1 [file] [log] [blame]
// Copyright The Monogon Project Authors.
// SPDX-License-Identifier: Apache-2.0
package main
import "github.com/spf13/cobra"
var clusterCmd = &cobra.Command{
Short: "Manages a running Metropolis cluster.",
Use: "cluster",
}
func init() {
rootCmd.AddCommand(clusterCmd)
}