webserver_rs/web_core.rs
1pub mod assets;
2pub mod authorization;
3pub mod config;
4
5#[cfg_attr(
6 docsrs,
7 doc(cfg(any(feature = "mysql", feature = "sqlite", feature = "postgres")))
8)]
9#[cfg(any(feature = "mysql", feature = "sqlite", feature = "postgres"))]
10pub mod db;
11
12pub mod http_error;
13pub mod log;
14
15#[allow(unused_imports)]
16pub use assets::MemoryStream;