summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-01-23 04:49:34 +0800
committer魏曹先生 <1992414357@qq.com>2026-01-23 04:49:34 +0800
commit626536ce51975b051fea087620bc1eb7f6bc69d3 (patch)
treeb24916b22012d9b8b3b09366bca9911781e6d596 /src/lib.rs
parentf607f6ac3b98d00370f613e674da7beb4c61ce58 (diff)
Reorganize project structure into systems and assets
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs19
1 files changed, 17 insertions, 2 deletions
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;