#![allow(unused_imports)]
mod args;
mod decode;
mod policy;
mod sync_fetch;
pub use args::{
ABS_MAX_BODY_BYTES, FetchMethod, HttpBodyTextFormat, RequestMethod, parse_http_fetch_args,
parse_http_request_args,
};
pub use args::{HttpFetchArgs, HttpRequestArgs};
pub use decode::html_to_readable_text;
pub use policy::{
approval_args_display, approval_args_display_request, display_redacted, request_storage_key,
storage_key, url_matches_allowed_prefixes,
};
pub use sync_fetch::{fetch_with_method, request_with_json_body, run_direct, run_request_direct};
#[cfg(test)]
mod tests;