summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authortom barrett <spalf0@gmail.com>2019-03-28 03:33:14 -0500
committertom barrett <spalf0@gmail.com>2019-03-28 07:24:51 -0500
commitf8c446ce74329fc5844e0fc1fd82e618242196f4 (patch)
tree02319b823da4888c6d4e2faa9f482be11caad353 /src/lib.rs
parentca5ee0b32b616fb8fa5e7e44c74acecefab719c3 (diff)
migrate and revert executable, query insert and delete test
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index e398dba..26dee5c 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,5 +1,7 @@
#[macro_use]
extern crate serde_derive;
+#[macro_use]
+extern crate diesel;
pub mod client;
pub mod constants;
@@ -7,5 +9,6 @@ pub mod item;
pub mod mass;
pub mod math;
pub mod modules;
+pub mod schema;
pub mod server_connection;
pub mod storage;