1 2 3 4 5 6 7
pub mod core; pub mod utils; // Re-export everything from core for ergonomic library use // Users can write `homeboy::config` instead of `homeboy::core::config` pub use core::*; pub use utils::*;