You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
399 B
Rust

#![doc=include_str!("../README.md")]
#[macro_use]
extern crate serde_derive;
/// Provides data access methods
#[cfg(feature = "api")]
pub mod api;
#[cfg(feature = "include-data")]
pub(crate) mod data;
/// Contains the type definitions for the data
pub mod models;
pub(crate) mod utils;
#[cfg(feature = "api")]
pub use api::Api;
pub use utils::error::DataError;
pub use utils::error::DataResult;