a3s-boot 0.1.3

Adapter-first modular Rust web framework for A3S inspired by Nest.js
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod handle;
mod id;
mod interceptor;
mod manager;
mod middleware;
mod module;
mod options;
mod store;

pub use handle::Session;
pub use interceptor::SessionCookieInterceptor;
pub use manager::SessionManager;
pub use middleware::SessionMiddleware;
pub use module::SessionModule;
pub use options::{SessionCookieSameSite, SessionOptions};
pub use store::{InMemorySessionStore, SessionStore};