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