From 47bf9b75f6dd8c2d3c3f1fb947a16e0e055f49cf Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Thu, 22 Jan 2026 14:24:50 +0800 Subject: Add renderer system and implement status command --- templates/_registry.rs.template | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'templates/_registry.rs.template') diff --git a/templates/_registry.rs.template b/templates/_registry.rs.template index fd6f779..cac3c8e 100644 --- a/templates/_registry.rs.template +++ b/templates/_registry.rs.template @@ -6,13 +6,21 @@ use crate::cmd::errors::CmdProcessError; pub async fn jv_cmd_process_node( node: &str, args: Vec, - ctx: JVCommandContext + ctx: JVCommandContext, + renderer_override: String ) -> Result { match node { // PROCESS // -- TEMPLATE START -- // Command `<>` - "<>" => return crate::<>::process(args, ctx).await, + "<>" => { + return crate::<>::process_with_renderer_flag( + args, + ctx, + renderer_override + ) + .await; + } // -- TEMPLATE END -- _ => {} } -- cgit