1pub mod generate; 2pub mod merge; 3pub mod parse; 4pub mod scrape; 5pub(crate) mod utils; 6 7pub type Error = Box<dyn std::error::Error + Send + Sync + 'static>; 8pub type Result<T> = std::result::Result<T, Error>;