aboutsummaryrefslogtreecommitdiffstats
path: root/rust/src/lib.rs
blob: 90a1f2500beb2649a2618fd36cfcf8832f0c7877 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#![allow(proc_macro_derive_resolution_fallback)]
#![recursion_limit = "128"]

#[macro_use]
extern crate error_chain;
#[macro_use]
extern crate diesel;
#[macro_use]
extern crate log;
#[macro_use]
extern crate lazy_static;

pub mod auth;
pub mod database_models;
pub mod database_schema; // only public for tests
pub mod editing;
mod endpoint_handlers;
mod endpoints;
pub mod entity_crud;
pub mod errors;
pub mod identifiers;
pub mod server;