1
2
3
4
5
6
pub type Result<T> = std::result::Result<T, &'static str>;

mod parse;
pub mod bytes;

pub use parse::*;