aboutsummaryrefslogtreecommitdiffstats
path: root/core/stream/init.moon
diff options
context:
space:
mode:
Diffstat (limited to 'core/stream/init.moon')
-rw-r--r--core/stream/init.moon18
1 files changed, 18 insertions, 0 deletions
diff --git a/core/stream/init.moon b/core/stream/init.moon
new file mode 100644
index 0000000..3fff136
--- /dev/null
+++ b/core/stream/init.moon
@@ -0,0 +1,18 @@
+----
+-- `Stream` interface and implementations.
+--
+-- @see Stream
+-- @see ValueStream
+-- @see EventStream
+-- @see IOStream
+--
+-- @module stream
+import ValueStream from require 'core.stream.value'
+import EventStream from require 'core.stream.event'
+import IOStream from require 'core.stream.io'
+
+{
+ :ValueStream
+ :EventStream
+ :IOStream
+}