// Auto generated by build.rs use crate::systems::cmd::cmd_system::{JVCommand, JVCommandContext}; use crate::systems::cmd::errors::CmdProcessError; <> /// Input parameters, execute a command node pub async fn jv_cmd_process_node( node: &str, args: Vec, ctx: JVCommandContext, renderer_override: String ) -> Result { match node { // PROCESS // -- TEMPLATE START -- // Command `<>` "<>" => { return crate::<>::process_with_renderer_flag( args, ctx, renderer_override ) .await; } // -- TEMPLATE END -- _ => {} } return Err(CmdProcessError::NoNodeFound(node.to_string())); } <> /// Get all command nodes pub fn jv_cmd_nodes() -> Vec { vec!<> }