diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-01-23 04:49:34 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-01-23 04:49:34 +0800 |
| commit | 626536ce51975b051fea087620bc1eb7f6bc69d3 (patch) | |
| tree | b24916b22012d9b8b3b09366bca9911781e6d596 /src/lib.rs | |
| parent | f607f6ac3b98d00370f613e674da7beb4c61ce58 (diff) | |
Reorganize project structure into systems and assets
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 19 |
1 files changed, 17 insertions, 2 deletions
@@ -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; |
