zino_http/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
#![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;

#[cfg(feature = "i18n")]
pub mod i18n;

#[cfg(feature = "view")]
pub mod view;

#[cfg(feature = "i18n")]
#[doc(no_inline)]
pub use fluent::fluent_args;