Skip to main content

resp_async/
error.rs

1use std::io;
2
3pub type Error = io::Error;
4pub type Result<T> = io::Result<T>;