noosphere_core/api/mod.rs
1//! This module contains data structures and client implementation for working
2//! with the REST API exposed by Noosphere Gateways.
3
4mod client;
5mod data;
6mod route;
7
8pub mod headers;
9pub mod v0alpha1;
10pub mod v0alpha2;
11
12pub use client::*;
13pub use data::*;
14
15// Re-export `http::StatusCode` here as our preferred `StatusCode` instance,
16// disambiguating from other crate's implementations.
17pub(crate) use http::StatusCode;