From a20e526971f6e6bdb4eb2f29b1c03689c0c4a6a8 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Wed, 11 Aug 2021 22:00:38 +0100 Subject: [PATCH] fmt --- actix-http/src/h1/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actix-http/src/h1/mod.rs b/actix-http/src/h1/mod.rs index 397f1961c..17cbfb90f 100644 --- a/actix-http/src/h1/mod.rs +++ b/actix-http/src/h1/mod.rs @@ -2,6 +2,7 @@ use bytes::{Bytes, BytesMut}; +mod chunked; mod client; mod codec; mod decoder; @@ -11,7 +12,6 @@ mod expect; mod payload; mod service; mod upgrade; -mod chunked; mod utils; pub use self::client::{ClientCodec, ClientPayloadCodec};