acme_chains/lib.rs
1/*
2 Appellation: acme-chains
3 Context: library
4 Creator: FL03 <jo3mccain@icloud.com>
5 Description:
6 Chains are collections of Blocks, hashable objects which may be leveraged in a number of
7 unique ways from creating decentralized ledgers to serving as a global state machine
8*/
9pub use crate::{actors::*, controllers::*, core::*, data::*};
10
11mod actors;
12mod controllers;
13mod core;
14mod data;