rocket/local/asynchronous/mod.rs
1//! Asynchronous local dispatching of requests.
2//!
3//! This module contains the `asynchronous` variant of the `local` API: it can
4//! be used with `#[rocket::async_test]` or another asynchronous test harness.
5//! For the blocking variant, see [`blocking`](super::blocking).
6//!
7//! See the [top-level documentation](super) for more usage details.
8
9mod client;
10mod request;
11mod response;
12
13pub use client::*;
14pub use request::*;
15pub use response::*;