1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-05 13:59:01 -05:00

refactor(ext/http): HTTP trait structs need to be public (#19075)

This commit is contained in:
Matt Mastracci 2023-05-10 18:04:01 +02:00 committed by David Sherret
parent 84dc93529e
commit c2faca2584

View file

@ -73,7 +73,6 @@ use tokio::task::spawn_local;
use crate::network_buffered_stream::NetworkBufferedStream;
use crate::reader_stream::ExternallyAbortableReaderStream;
use crate::reader_stream::ShutdownHandle;
use crate::request_properties::HttpPropertyExtractor;
pub mod compressible;
mod http_next;
@ -85,6 +84,10 @@ mod response_body;
mod websocket_upgrade;
pub use request_properties::DefaultHttpPropertyExtractor;
pub use request_properties::HttpConnectionProperties;
pub use request_properties::HttpListenProperties;
pub use request_properties::HttpPropertyExtractor;
pub use request_properties::HttpRequestProperties;
deno_core::extension!(
deno_http,