blob: a474061e1a52ee76fc4cc6a32d0b7a4a468417f1 [file] [log] [blame]
Tim Windelschmidt6d33a432025-02-04 14:34:25 +01001// Copyright The Monogon Project Authors.
2// SPDX-License-Identifier: Apache-2.0
3
Serge Bazanskibeec27c2024-10-31 12:27:08 +00004package main
5
6import "github.com/spf13/cobra"
7
8var clusterCmd = &cobra.Command{
9 Short: "Manages a running Metropolis cluster.",
10 Use: "cluster",
11}
12
13func init() {
14 rootCmd.AddCommand(clusterCmd)
15}