1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![doc=include_str!("../README.md")]

#[macro_use]
extern crate serde_derive;

/// Provides data access methods
pub mod api;
pub(crate) mod data;
/// Contains the type definitions for the data
pub mod models;
pub(crate) mod utils;

pub use api::Api;
pub use utils::error::DataError;
pub use utils::error::DataResult;