summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 5f8118b..60d89cd 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -4,6 +4,9 @@
extern crate rocket;
#[macro_use]
+extern crate rocket_contrib;
+
+#[macro_use]
extern crate diesel;
#[derive(Debug)]
@@ -13,8 +16,8 @@ pub struct Config {
pub base_url: String,
}
-pub mod error;
pub mod db;
+pub mod error;
pub mod models;
mod schema;
pub mod server;