blob: c82158739d61788d0f1e1a4c6c922b1ca98b891d [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)
}