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