webserver-rs 0.5.2

An out-of-the-box web server framework that is encapsulated based on salvo and sea-orm.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod assets;
pub mod authorization;
pub mod config;

#[cfg_attr(
    docsrs,
    doc(cfg(any(feature = "mysql", feature = "sqlite", feature = "postgres")))
)]
#[cfg(any(feature = "mysql", feature = "sqlite", feature = "postgres"))]
pub mod db;

pub mod http_error;
pub mod log;

#[allow(unused_imports)]
pub use assets::MemoryStream;