From 40e62e9074fc3c585e3c646b6c81f530a1becc2f Mon Sep 17 00:00:00 2001 From: Harry Barber Date: Fri, 18 Nov 2022 15:31:15 +0000 Subject: [PATCH] Add the extract module --- rust-runtime/aws-smithy-http-server/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rust-runtime/aws-smithy-http-server/src/lib.rs b/rust-runtime/aws-smithy-http-server/src/lib.rs index 18ae005d08a..d9cc789c396 100644 --- a/rust-runtime/aws-smithy-http-server/src/lib.rs +++ b/rust-runtime/aws-smithy-http-server/src/lib.rs @@ -13,6 +13,8 @@ pub(crate) mod macros; pub mod body; pub(crate) mod error; pub mod extension; +#[doc(inline)] +pub mod extract; #[doc(hidden)] pub mod instrumentation; #[doc(hidden)]