mingling 0.1.0

A procedural command-line framework with subcommand support
Documentation
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;
}