kern 1.8.3

General library for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! HTTP client
//! Work in progress

#[allow(clippy::module_inception)]
mod client;
mod request;
mod response;
mod url;

pub use client::*;
pub use response::HttpResponse;