summaryrefslogtreecommitdiff
path: root/src/compute
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2020-10-01 15:10:35 +0200
committerLaurenz <laurmaedje@gmail.com>2020-10-01 15:10:35 +0200
commit7c12f0c07f9d4ed473027dbd00cbbc00e4a3050c (patch)
treee097c908761cc67605d6c151f680c3e173e0344b /src/compute
parent7fcad452b87c8bd31a9b7dfba78c1b1a92d33dd9 (diff)
Flatten compute module
Diffstat (limited to 'src/compute')
-rw-r--r--src/compute/mod.rs10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/compute/mod.rs b/src/compute/mod.rs
index a67d65b6..8f2226b1 100644
--- a/src/compute/mod.rs
+++ b/src/compute/mod.rs
@@ -1,5 +1,9 @@
//! Building blocks for the computational part.
-pub mod dict;
-pub mod scope;
-pub mod value;
+mod dict;
+mod scope;
+mod value;
+
+pub use dict::*;
+pub use scope::*;
+pub use value::*;