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{ | ||||
Serge Bazanski | 4c50f99 | 2022-09-05 18:43:01 +0200 | [diff] [blame^] | 8 | Short: "Updates and queries node information.", |
9 | Use: "node", | ||||
Mateusz Zalega | db75e21 | 2022-08-04 17:31:34 +0200 | [diff] [blame] | 10 | } |
11 | |||||
12 | func init() { | ||||
13 | rootCmd.AddCommand(nodeCmd) | ||||
14 | } |