nfe-core 0.1.2

Core types and error handling for NF-e
Documentation
1
2
3
4
5
6
7
8
9
10
//! nfe-core - Core types and error handling for NF-e

pub mod config;
pub mod error;
pub mod types;
pub mod utils;

pub use config::{Ambiente, Config};
pub use error::{Error, Result};
pub use types::*;