Skip to content

Commit

Permalink
Merge pull request #94 from Frostie314159/response-fix
Browse files Browse the repository at this point in the history
Reexported response readers.
  • Loading branch information
lulf authored Oct 29, 2024
2 parents e2e1774 + 039ab63 commit c1f28a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/response/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ use heapless::Vec;
use crate::headers::{ContentType, KeepAlive, TransferEncoding};
use crate::reader::BufferingReader;
use crate::request::Method;
use crate::response::chunked::ChunkedBodyReader;
use crate::response::fixed_length::FixedLengthBodyReader;
pub use crate::response::chunked::ChunkedBodyReader;
pub use crate::response::fixed_length::FixedLengthBodyReader;
use crate::{Error, TryBufRead};

mod chunked;
Expand Down

0 comments on commit c1f28a5

Please sign in to comment.