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 --- src/cmds.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'src/cmds.rs') diff --git a/src/cmds.rs b/src/cmds.rs index 46057c8..92e587f 100644 --- a/src/cmds.rs +++ b/src/cmds.rs @@ -3,4 +3,5 @@ pub mod cmd; pub mod collect; pub mod r#in; pub mod out; +pub mod r#override; pub mod renderer; -- cgit