ic_http_certification/http/mod.rs
1//! The HTTP module contains types for representing HTTP requests and responses in Rust.
2//! These types are Candid-encodable and are used by canisters that implement the
3//! HTTP interface required by the HTTP Gateway Protocol.
4
5mod header_field;
6mod http_request;
7mod http_response;
8
9pub use header_field::*;
10pub use http_request::*;
11pub use http_response::*;