From 626536ce51975b051fea087620bc1eb7f6bc69d3 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Fri, 23 Jan 2026 04:49:34 +0800 Subject: Reorganize project structure into systems and assets --- src/lib.rs | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index 7c9dd8f..bc86288 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,3 +1,5 @@ +// --- LIBS --- + /// Utils pub mod utils; @@ -7,5 +9,18 @@ pub mod data; /// Json Format pub mod leegacy_json_output; -/// Command -pub mod cmd; +/// Systems +pub mod systems; + +// --- ASSETS --- + +/// Commands +pub mod cmds; + +/// Command Data +pub mod arguments; +pub mod inputs; +pub mod outputs; + +/// Result Renderers +pub mod renderers; -- cgit