var Create = &cobra.Command{
Use: "create",
Short: "Provides the tools to create network objects",
Long: `A set of commands to support the creation of network objects.`,
Run: func(cmd *cobra.Command, args []string) {
cmd.HelpFunc()(cmd, args)
},
}
var Network = &cobra.Command{
Use: "network",
Short: "Provides the tools to control a local network node",
Long: `A set of commands to support the management of a network nodes.`,
Run: func(cmd *cobra.Command, args []string) {
cmd.HelpFunc()(cmd, args)
},
}