From d19e5d84ee21502fd3440511d4ffb1ee1f49d3b2 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Wed, 4 Feb 2026 00:27:16 +0800 Subject: Refactor build system and implement complete renderer system - Split monolithic build.rs into modular async generators - Add renderer override system with type-safe dispatch - Implement command template macro for consistent command definitions - Add proc-macro crates for command and renderer systems - Reorganize directory structure for better separation of concerns - Update documentation to reflect new architecture --- templates/_renderers.rs.template | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 templates/_renderers.rs.template (limited to 'templates/_renderers.rs.template') diff --git a/templates/_renderers.rs.template b/templates/_renderers.rs.template deleted file mode 100644 index 37f0f1b..0000000 --- a/templates/_renderers.rs.template +++ /dev/null @@ -1,16 +0,0 @@ -match renderer_str { -// MATCH -// -- TEMPLATE START -- - "<>" => { - Self::process_with_renderer::< - RendererType - >(args, ctx) - .await - } -// -- TEMPLATE END -- - _ => { - return Err(CmdProcessError::Render(CmdRenderError::RendererNotFound( - renderer_str.to_string(), - ))); - } -} -- cgit