quarlus-core 0.1.0

Core runtime for Quarlus web framework - AppBuilder, plugins, guards, and dependency injection
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod body;
pub mod extract;
pub mod header;
pub mod middleware;
pub mod response;
pub mod routing;

pub use axum::{serve, Json, Router};
pub use self::extract::{FromRef, FromRequest, FromRequestParts, Path, Query, State};
pub use self::header::{HeaderMap, StatusCode};
pub use self::response::{Html, IntoResponse, Response};