1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
Appellation: acme-conduits <library>
Contrib: FL03 <jo3mccain@icloud.com>
Description:
A conduit describes a viable surface which facilitates at least one, if not all, of the four possible types of interactions.
Those interactions describe the different engagements the system may undergo and follow the logic below
I Peer-to-Peer (P -> P)
II Peer-to-Machine (P -> M)
III Machine-to-Machine (M -> M)
IV Machine-to-Peer (M -> P)
*/
pub mod api;
pub mod cli;
pub mod rpc;