#[cfg(all(any(test, feature = "test-support"), not(target_arch = "wasm32")))]
pub mod test_support;
pub mod cors;
#[cfg(not(target_arch = "wasm32"))]
pub mod dns;
pub mod events;
pub mod fetch;
pub mod fetch_metadata;
pub mod fetcher;
pub mod fetcher_context;
#[cfg(not(target_arch = "wasm32"))]
pub(crate) mod fs_utils;
#[cfg(not(target_arch = "wasm32"))]
pub mod hsts;
pub mod mixed_content;
pub mod null_emitter;
pub mod observer;
#[cfg(not(target_arch = "wasm32"))]
pub mod proxy;
#[cfg(not(target_arch = "wasm32"))]
pub mod pump;
pub mod referrer;
pub mod request_ref;
pub mod shared_body;
pub mod simple;
pub mod tls;
pub mod types;
pub(crate) mod utils;