| Tim Windelschmidt | 6d33a43 | 2025-02-04 14:34:25 +0100 | [diff] [blame] | 1 | // Copyright The Monogon Project Authors. |
| 2 | // SPDX-License-Identifier: Apache-2.0 | ||||
| 3 | |||||
| Serge Bazanski | beec27c | 2024-10-31 12:27:08 +0000 | [diff] [blame] | 4 | package main |
| 5 | |||||
| 6 | import "github.com/spf13/cobra" | ||||
| 7 | |||||
| 8 | var clusterCmd = &cobra.Command{ | ||||
| 9 | Short: "Manages a running Metropolis cluster.", | ||||
| 10 | Use: "cluster", | ||||
| 11 | } | ||||
| 12 | |||||
| 13 | func init() { | ||||
| 14 | rootCmd.AddCommand(clusterCmd) | ||||
| 15 | } | ||||