diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-04-14 14:25:00 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-04-14 14:25:00 +0800 |
| commit | 48a3fa1c27d2b9722f60dfaf062a0c71075a74f3 (patch) | |
| tree | 5828d5973a908aa869be2fbaf7657bb8d1389eb4 /mingling_core/src | |
| parent | 031771110c53ff903046c47882b418a5b4936d5b (diff) | |
Add script support to run-tools utilities
The run-tools.ps1 and run-tools.sh scripts now support running both
Rust binaries and shell scripts. They check dev_tools/scripts first,
then dev_tools/src/bin. Also added a simple HTTP preview script.
Diffstat (limited to 'mingling_core/src')
| -rw-r--r-- | mingling_core/src/program.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mingling_core/src/program.rs b/mingling_core/src/program.rs index cf8b06c..bee9772 100644 --- a/mingling_core/src/program.rs +++ b/mingling_core/src/program.rs @@ -257,7 +257,7 @@ macro_rules! __dispatch_program_chains { }; } -// Get all registered dispatcher names from the program +/// Get all registered dispatcher names from the program pub fn get_nodes<C: ProgramCollect<Enum = G>, G: Display>( program: &Program<C, G>, ) -> Vec<(String, &(dyn Dispatcher<G> + Send + Sync))> { |
