From 7ce68cd11516bd7cf037ecea99a92aee7c31b2c3 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sat, 28 Mar 2026 00:47:46 +0800 Subject: Add initial Mingling framework codebase --- mingling/src/asset/chain.rs | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 mingling/src/asset/chain.rs (limited to 'mingling/src/asset/chain.rs') diff --git a/mingling/src/asset/chain.rs b/mingling/src/asset/chain.rs new file mode 100644 index 0000000..1ea1125 --- /dev/null +++ b/mingling/src/asset/chain.rs @@ -0,0 +1,8 @@ +use crate::ChainProcess; + +pub mod error; + +pub trait Chain { + type Previous; + fn proc(p: Self::Previous) -> impl Future + Send; +} -- cgit