marketstack/lib.rs
1//! A library for communicating with the Marketstack REST API.
2
3pub mod api;
4mod auth;
5mod marketstack;
6pub mod types;
7
8pub use crate::auth::AuthError;
9pub use crate::marketstack::{
10 AsyncMarketstack, Marketstack, MarketstackBuilder, MarketstackError, RestError,
11};
12pub use crate::types::*;
13
14#[cfg(test)]
15mod test;