rs42/
result.rs

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