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