echo_http 0.1.2

Axios like http client for the typescipt devs that just can't let go
Documentation
1
2
3
4
5
6
7
8
pub mod headers;

use std::collections::HashMap;

#[derive(Default, Debug, Clone, PartialEq)]
pub struct Headers<'a> {
    pub headers: HashMap<&'a str, &'a str>,
}