summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-01-24 03:10:41 +0800
committer魏曹先生 <1992414357@qq.com>2026-01-24 03:10:41 +0800
commit49b9037168fb5b6c8deb7ab06abbfd6f54ebc798 (patch)
tree0f5b7c6ce67f2561b2e00da4331df09f476345d4 /src/lib.rs
parentf9fa7d65d775959efbc9609ccafd1fdce76129e4 (diff)
Split prepare phase into prepare and collect
- Prepare now handles argument-to-input conversion only - Collect handles resource gathering and data collection - Status command updated to use new two-phase structure - Command system trait modified to support separate phases
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index dc8ff05..02b2fc1 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -21,6 +21,7 @@ pub mod cmds;
/// Command Data
pub mod arguments;
+pub mod collects;
pub mod inputs;
pub mod outputs;