diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-06-26 07:59:34 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-06-26 07:59:34 +0800 |
| commit | ef5ce208ba3a72228c92cccd3ddd36a2aa9f096f (patch) | |
| tree | 3a9970aaafcac937cfbe219ecc2259f81a1b04fe /mling/src/proj_mgr/mod.rs | |
| parent | a73f0f692968a04fb6f99ffbf6a2538cb482815f (diff) | |
feat(proj_mgr): add CHECKLIST.md reader for values and toggles
Parse fenced code blocks as key-value pairs and checkbox lines as
namespace toggles in a single pass
Diffstat (limited to 'mling/src/proj_mgr/mod.rs')
| -rw-r--r-- | mling/src/proj_mgr/mod.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mling/src/proj_mgr/mod.rs b/mling/src/proj_mgr/mod.rs index 04353b7..d0c4cbf 100644 --- a/mling/src/proj_mgr/mod.rs +++ b/mling/src/proj_mgr/mod.rs @@ -9,6 +9,9 @@ pub use generator::*; pub mod metadata; +mod checklist_reader; +pub use checklist_reader::*; + mod show_binaries; pub use show_binaries::*; |
