//! Cloudflare Workers runtime adapters for the multistore S3 proxy gateway.
//!
//! This crate provides reusable runtime primitives for running a multistore
//! proxy on Cloudflare Workers:
//!
//! - `FetchConnector` — `object_store::client::HttpConnector` using the Fetch API
//! - [`JsBody`] — zero-copy body wrapper around `web_sys::ReadableStream`
//! - [`WorkerBackend`] — `ProxyBackend` implementation using the Fetch API
//! - [`WorkerSubscriber`] — `tracing::Subscriber` routing to `console.log`
//! - [`NoopCredentialRegistry`] — anonymous-only credential registry
//! - [`response`] — helpers for building `web_sys::Response` from proxy results
//! - [`add_cors_headers`] — set permissive CORS headers on a `HeaderMap`
pub
pub use WorkerBackend;
pub use ;
pub use add_cors_headers;
pub use WsHeaders;
pub use NoopCredentialRegistry;
pub use RequestParts;
pub use ;
pub use WorkerSubscriber;