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