mercury_rust/
lib.rs

1#[macro_use]
2extern crate serde_derive;
3
4pub mod client;
5pub mod error;
6pub mod resources;
7
8use std::result;
9
10//TODO: Use anyhow instead
11pub type Result<T> = result::Result<T, error::Error>;