Skip to content

Commit

Permalink
Remove unused imports.
Browse files Browse the repository at this point in the history
Signed-off-by: David Calavera <[email protected]>
  • Loading branch information
calavera committed Dec 24, 2023
1 parent f00aa04 commit f5f4241
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions lambda-http/src/streaming.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,10 @@ use crate::http::header::SET_COOKIE;
use crate::tower::ServiceBuilder;
use crate::Request;
use crate::{request::LambdaRequest, RequestExt};
pub use aws_lambda_events::encodings::Body as LambdaEventBody;
use bytes::Bytes;
pub use http::{self, Response};
use http_body::Body;
pub use lambda_runtime::{
self, service_fn, tower, tower::ServiceExt, Error, FunctionResponse, LambdaEvent, MetadataPrelude, Service,
StreamResponse,
};
pub use lambda_runtime::{self, tower::ServiceExt, Error, LambdaEvent, MetadataPrelude, Service, StreamResponse};
use std::fmt::{Debug, Display};
use std::pin::Pin;
use std::task::{Context, Poll};
Expand Down

0 comments on commit f5f4241

Please sign in to comment.