Skip to main content

http_nu/
lib.rs

1#![allow(clippy::result_large_err)]
2pub mod commands;
3pub mod compression;
4pub mod engine;
5pub mod handler;
6pub mod listener;
7pub mod logging;
8pub mod request;
9pub mod response;
10pub mod stdlib;
11pub mod store;
12pub mod worker;
13
14#[cfg(test)]
15mod test_engine;
16#[cfg(test)]
17mod test_handler;
18
19pub use engine::Engine;
20pub use listener::Listener;
21
22pub type Error = Box<dyn std::error::Error + Send + Sync>;