zino_http/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
#![doc = include_str!("../README.md")]
#![doc(html_favicon_url = "https://zino.cc/assets/zino-logo.png")]
#![doc(html_logo_url = "https://zino.cc/assets/zino-logo.svg")]
#![allow(async_fn_in_trait)]
#![forbid(unsafe_code)]

mod helper;

pub mod request;
pub mod response;
pub mod timing;