1 2 3 4 5 6 7 8 9 10 11 12 13
/*
Appellation: primitives <module>
Creator: FL03 <jo3mccain@icloud.com>
Description:
This module is dedicated to developing a set of primitives to be used throughout our
ecosystem
*/
pub use self::{constants::*, errors::*, types::*, variants::*};
mod constants;
mod errors;
mod types;
mod variants;