1pub mod api;
2pub mod errors;
3pub use crate::errors::*;
4pub mod id;
5pub mod metadata;
6pub use crate::id::*;
7
8pub use rocket_failure_errors::StrictApiResponse as ApiResponse;
9
10#[cfg(test)]
11mod tests {
12 #[test]
13 fn it_works() {
14 assert_eq!(2 + 2, 4);
15 }
16}