serverkit_hyper/lib.rs
1#![forbid(unsafe_code)]
2
3#[cfg(any(feature = "std", feature = "tokio"))]
4mod body;
5#[cfg(any(feature = "std", feature = "tokio"))]
6mod bridge;
7mod run;
8#[cfg(feature = "std")]
9mod std_impl;
10#[cfg(feature = "tokio")]
11mod tokio_impl;
12
13pub use run::Run;
14pub use serverkit::prelude::*;