From d58dee66a330ad46afcd7bb1231f9942527ac506 Mon Sep 17 00:00:00 2001 From: David Calavera Date: Sun, 25 Feb 2024 17:33:47 -0800 Subject: [PATCH] Fix formatting. Signed-off-by: David Calavera --- lambda-runtime/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lambda-runtime/src/lib.rs b/lambda-runtime/src/lib.rs index f195dd8c..3fe56b03 100644 --- a/lambda-runtime/src/lib.rs +++ b/lambda-runtime/src/lib.rs @@ -7,6 +7,7 @@ //! Create a type that conforms to the [`tower::Service`] trait. This type can //! then be passed to the the `lambda_runtime::run` function, which launches //! and runs the Lambda runtime. +use ::tracing::{error, trace, Instrument}; use bytes::Bytes; use futures::FutureExt; use http_body_util::BodyExt; @@ -24,7 +25,6 @@ use std::{ use tokio_stream::{Stream, StreamExt}; pub use tower::{self, service_fn, Service}; use tower::{util::ServiceFn, ServiceExt}; -use ::tracing::{error, trace, Instrument}; mod deserializer; mod requests;