blob: c82158739d61788d0f1e1a4c6c922b1ca98b891d [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{
Serge Bazanski4c50f992022-09-05 18:43:01 +02008 Short: "Updates and queries node information.",
9 Use: "node",
Mateusz Zalegadb75e212022-08-04 17:31:34 +020010}
11
12func init() {
13 rootCmd.AddCommand(nodeCmd)
14}