ic-http-gateway 0.4.3

An HTTP Gateway implementation for interfacing with the Internet Computer over HTTP
Documentation
/*!
# HTTP Gateway
*/

mod client;
pub use client::*;

mod protocol;

mod request;
pub use request::*;

mod response;
pub use response::*;

mod consts;
pub(crate) use consts::*;

mod error;
pub use error::*;