proxie 0.1.1

Library for making requests through HTTP or SOCKS proxy
Documentation
1
2
3
4
5
6
use std::{
    error::Error,
    result,
};

pub(crate) type Result<T> = result::Result<T, Box<dyn Error>>;