ood_persistence/examples/web/src/lib.rs

18 lines
232 B
Rust

#![deny(clippy::all)]
#[macro_use]
extern crate postgres_types;
#[macro_use]
extern crate log;
#[macro_use]
extern crate async_trait;
#[macro_use]
extern crate serde;
pub mod config;
pub mod error;
mod app;
mod db;
pub mod rest;