rh 0.1.14

A user-friendly command-line tool to request HTTP APis
Documentation
1
2
3
4
5
6
7
8
use crate::core::Error;
use std::io;

impl From<io::Error> for Error {
    fn from(err: io::Error) -> Error {
        Error::Io(err.to_string())
    }
}