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.

14 lines
221 B
Rust

#[macro_use]
extern crate serde_derive;
#[macro_use]
extern crate include_dir;
pub mod api;
pub(crate) mod data;
pub mod models;
pub(crate) mod utils;
pub use utils::error::DataError;
pub use utils::error::DataResult;