json_parser/
result.rs

1use crate::error::Error;
2
3pub type Result<T> = std::result::Result<T, Error>;