re-export all structs

This commit is contained in:
Ayrat Badykov 2021-06-24 07:48:33 +03:00
parent 8675f223a0
commit a2e4885bdb
No known key found for this signature in database
GPG key ID: 16AE533AB7A3E8C6

View file

@ -4,7 +4,12 @@ extern crate diesel;
#[macro_use]
extern crate log;
mod schema;
pub mod executor;
pub mod postgres;
mod schema;
pub mod worker_pool;
pub use executor::*;
pub use postgres::*;
pub use worker_pool::*;