1//! nfe-core - Core types and error handling for NF-e 2 3pub mod config; 4pub mod error; 5pub mod types; 6pub mod utils; 7 8pub use config::{Ambiente, Config}; 9pub use error::{Error, Result}; 10pub use types::*;