blob: c84013f54a6e3300c8575a5dbc970bafb0e0765b [file] [log] [blame]
package main
import (
"github.com/spf13/cobra"
)
var nodeCmd = &cobra.Command{
Short: "Updates and queries node information.",
Use: "node",
}
func init() {
rootCmd.AddCommand(nodeCmd)
}