From 48a3fa1c27d2b9722f60dfaf062a0c71075a74f3 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Tue, 14 Apr 2026 14:25:00 +0800 Subject: 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. --- mingling_core/src/program.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mingling_core') 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, G: Display>( program: &Program, ) -> Vec<(String, &(dyn Dispatcher + Send + Sync))> { -- cgit