diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-08-15 03:42:31 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-08-15 03:42:31 +0800 |
| commit | 57e20f69efea609d8332cc39d223f4aa46be3c78 (patch) | |
| tree | 42e0aa5435a9cb03bba49b4aa3838105f056bae2 /mingling_core/src/utils.rs | |
| parent | ec6c87d12062576271231b88364a4aa00765ae65 (diff) | |
feat(core): add public ArgumentSplitter utility
Move the REPL's argument splitting logic into a new public `utils`
module exposing the `ArgumentSplitter` trait for reuse by downstream
code.
Diffstat (limited to 'mingling_core/src/utils.rs')
| -rw-r--r-- | mingling_core/src/utils.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mingling_core/src/utils.rs b/mingling_core/src/utils.rs new file mode 100644 index 0000000..89fcd8f --- /dev/null +++ b/mingling_core/src/utils.rs @@ -0,0 +1,3 @@ +mod splitter; + +pub use splitter::ArgumentSplitter; |
