summaryrefslogtreecommitdiff
path: root/mingling_core/src/asset/chain.rs
blob: 1ea1125bb97000c8ee1461b178e7ba76f25e5f1a (plain) (blame)
1
2
3
4
5
6
7
8
use crate::ChainProcess;

pub mod error;

pub trait Chain {
    type Previous;
    fn proc(p: Self::Previous) -> impl Future<Output = ChainProcess> + Send;
}