parse/
lib.rs

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