summaryrefslogtreecommitdiff
path: root/mingling_core/src/program.rs
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-03-29 21:58:10 +0800
committer魏曹先生 <1992414357@qq.com>2026-03-29 21:58:10 +0800
commit32b30055ed9647f8f7ba4f3eee92020b79d06e0d (patch)
tree1f8254bd17bbc81a37e0091f0d8ba3daa4d4593d /mingling_core/src/program.rs
parent596e5e2440df2d32f1cf3e052dc633e774edf6ee (diff)
Add mingling crate with core re-export and documentation
Diffstat (limited to 'mingling_core/src/program.rs')
-rw-r--r--mingling_core/src/program.rs7
1 files changed, 1 insertions, 6 deletions
diff --git a/mingling_core/src/program.rs b/mingling_core/src/program.rs
index 3d8bc14..1f234af 100644
--- a/mingling_core/src/program.rs
+++ b/mingling_core/src/program.rs
@@ -120,12 +120,7 @@ macro_rules! __dispatch_program_chains {
Box::pin(fut)
}
)*
- _ => Box::pin(async move {
- mingling::AnyOutput::new(mingling::hint::NoChainFound {
- name: format!("{:?}", any.type_id).to_string(),
- })
- .route_chain()
- }),
+ _ => panic!("No chain found for type id: {:?}", any.type_id),
}
}
};