summaryrefslogtreecommitdiffstats
path: root/rust/src/lib.rs
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2018-05-15 21:18:01 -0700
committerBryan Newbold <bnewbold@robocracy.org>2018-05-15 21:18:01 -0700
commit6e96f5e6e409f2bf2c389c7315f0747ab9e24d00 (patch)
tree7f866c38eb5f8a257da9e255029032f6b173c1d3 /rust/src/lib.rs
parent0ed087be71b02d9279bd3b131131eae672580d71 (diff)
downloadfatcat-6e96f5e6e409f2bf2c389c7315f0747ab9e24d00.tar.gz
fatcat-6e96f5e6e409f2bf2c389c7315f0747ab9e24d00.zip
fmt
Diffstat (limited to 'rust/src/lib.rs')
-rw-r--r--rust/src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/rust/src/lib.rs b/rust/src/lib.rs
index 49d0ef70..b59d6024 100644
--- a/rust/src/lib.rs
+++ b/rust/src/lib.rs
@@ -3,9 +3,9 @@ extern crate fatcat_api;
extern crate chrono;
#[macro_use]
extern crate diesel;
-extern crate uuid;
extern crate dotenv;
extern crate futures;
+extern crate uuid;
#[macro_use]
extern crate hyper;
//extern crate swagger;
@@ -16,8 +16,8 @@ extern crate r2d2;
extern crate serde_json;
pub mod api_server;
-pub mod database_schema;
pub mod database_models;
+pub mod database_schema;
mod errors {
error_chain!{}