Mateusz Zalega | db75e21 | 2022-08-04 17:31:34 +0200 | [diff] [blame] | 1 | package main |
2 | |||||
3 | import ( | ||||
4 | "github.com/spf13/cobra" | ||||
5 | ) | ||||
6 | |||||
7 | var nodeCmd = &cobra.Command{ | ||||
8 | Short: "Updates and queries node information.", | ||||
9 | Use: "node", | ||||
10 | } | ||||
11 | |||||
12 | func init() { | ||||
13 | rootCmd.AddCommand(nodeCmd) | ||||
14 | } |