deboa 0.1.0-beta.22

A friendly rest client on top of hyper.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use ::url::Url;

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

mod cache;
//mod catcher;
mod cookie;
mod form;
mod request;
mod response;
mod url;

pub const TEST_URL: &str = "https://localhost:8000";

pub(crate) fn test_url() -> Url {
    Url::parse(TEST_URL).unwrap()
}