#![forbid(unsafe_code)]
pub mod app;
pub mod dep;
pub mod error;
pub mod extract;
pub mod handler;
pub mod middleware;
pub mod module;
pub mod response;
pub mod router;
pub mod test_client;
pub use app::{App, BuiltApp, Extension};
pub use dep::Dep;
pub use error::{Error, Result};
pub use extract::{FromRequest, Headers, Path, Query, RequestCtx};
pub use handler::Handler;
pub use middleware::{Middleware, MiddlewareFuture, Next};
pub use module::Module;
pub use response::{Created, IntoResponse, Json, NoContent, Response};
pub use router::{MethodRouter, delete, get, patch, post, put};
pub use test_client::{TestApp, TestResponse};
pub use http;
pub mod prelude {
pub use crate::{
App, Created, Dep, Error, Extension, Headers, IntoResponse, Json, Middleware,
MiddlewareFuture, Module, Next, NoContent, Path, Query, RequestCtx, Result, TestApp,
delete, get, patch, post, put,
};
}