momento_functions_http/lib.rs
1//! Host interfaces for making HTTP requests from Momento Functions.
2//!
3//! This crate provides a typed API for sending HTTP requests, with support
4//! for custom headers, request bodies, and AWS authorization strategies.
5
6mod invoke;
7mod request;
8
9/// Internal module for WIT bindings.
10#[doc(hidden)]
11pub mod wit;
12
13pub use invoke::{HttpError, Response, invoke};
14pub use momento_functions_bytes::Data;
15pub use request::{Authorization, AwsSigV4Secret, IamRole, Request};