Skip to content

Commit ee7dcd7

Browse files
authored
Remove unused imports. (#762)
Signed-off-by: David Calavera <david.calavera@gmail.com>
1 parent f00aa04 commit ee7dcd7

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

lambda-http/src/streaming.rs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,10 @@ use crate::http::header::SET_COOKIE;
22
use crate::tower::ServiceBuilder;
33
use crate::Request;
44
use crate::{request::LambdaRequest, RequestExt};
5-
pub use aws_lambda_events::encodings::Body as LambdaEventBody;
65
use bytes::Bytes;
76
pub use http::{self, Response};
87
use http_body::Body;
9-
pub use lambda_runtime::{
10-
self, service_fn, tower, tower::ServiceExt, Error, FunctionResponse, LambdaEvent, MetadataPrelude, Service,
11-
StreamResponse,
12-
};
8+
pub use lambda_runtime::{self, tower::ServiceExt, Error, LambdaEvent, MetadataPrelude, Service, StreamResponse};
139
use std::fmt::{Debug, Display};
1410
use std::pin::Pin;
1511
use std::task::{Context, Poll};

0 commit comments

Comments
 (0)