1
2
3
4
5
6
7
pub mod entries;
pub mod entry;
pub mod error;
pub mod format;
pub mod seek;

pub type Result<T> = std::result::Result<T, error::Error>;