diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-03-30 17:26:03 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-03-30 17:26:03 +0800 |
| commit | 4421fb2794f2af292f8781e7d12ae002a3f10a9b (patch) | |
| tree | 31a358dd80a7e1d3855f4a6281eaf5e010bfb429 /mingling/src/parser.rs | |
| parent | c9e3676e0e2353dc09471c783a3a263dee0fdcb1 (diff) | |
Add argument parser module with picker API
Diffstat (limited to 'mingling/src/parser.rs')
| -rw-r--r-- | mingling/src/parser.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mingling/src/parser.rs b/mingling/src/parser.rs new file mode 100644 index 0000000..be6f9b2 --- /dev/null +++ b/mingling/src/parser.rs @@ -0,0 +1,5 @@ +mod args; +pub use crate::parser::args::*; + +mod picker; +pub use crate::parser::picker::*; |
