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/lib.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/lib.rs')
| -rw-r--r-- | mingling_core/src/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mingling_core/src/lib.rs b/mingling_core/src/lib.rs index 7048307..641118c 100644 --- a/mingling_core/src/lib.rs +++ b/mingling_core/src/lib.rs @@ -110,3 +110,6 @@ pub mod __private { /// Mingling's convention metadatas, which can be bound to types using `#[metadata]`, to provide identification for types pub mod metadata; + +/// Some common utilities in Mingling, providing a collection of functionality needed by many modules. +pub mod utils; |
