summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorJustin Worthe <justin@worthe-it.co.za>2018-05-10 23:01:22 +0200
committerJustin Worthe <justin@worthe-it.co.za>2018-05-10 23:01:22 +0200
commit4755702ef08d70961b5248cb706a592a406d0556 (patch)
treebfe8ff9e016338a58b6d0d9314d1b67b17cafea9 /src/lib.rs
parent11c791a59ac60241f253cdfb4e8765039d15edff (diff)
Split to library. Reimplemented sample strategy in new state.
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
new file mode 100644
index 0000000..158805a
--- /dev/null
+++ b/src/lib.rs
@@ -0,0 +1,9 @@
+extern crate serde;
+extern crate serde_json;
+
+#[macro_use]
+extern crate serde_derive;
+
+pub mod json;
+pub mod engine;
+pub mod strategy;