summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorGraham Northup <grissess@nexusg.org>2017-09-18 23:12:14 -0400
committerGraham Northup <grissess@nexusg.org>2017-09-18 23:12:14 -0400
commit85925d69e08455bd91d32a27cd3690c9cb634a6b (patch)
tree1023c044a3350aadb4eb06bf73e209f81f21f8ae /src/lib.rs
Initial work on modular synthesis
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
new file mode 100644
index 0000000..9a1eaff
--- /dev/null
+++ b/src/lib.rs
@@ -0,0 +1,11 @@
+pub mod types;
+pub use types::*;
+
+pub mod synth;
+
+#[cfg(test)]
+mod tests {
+ #[test]
+ fn it_works() {
+ }
+}