1//! PDB file format parser. 2 3mod error; 4mod profile; 5mod symbols; 6mod types; 7 8pub use self::{error::Error, profile::create_profile};