// 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 `<>` "<>" => { if renderer_override == "default" { return crate::<>::process_to_render_system( args, ctx, ) .await; } else { return crate::<>::process_to_renderer_override( 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!<> }