aboutsummaryrefslogtreecommitdiffstats
path: root/core/stream/init.moon
diff options
context:
space:
mode:
authors-ol <s-ol@users.noreply.github.com>2020-03-24 11:39:25 +0000
committers-ol <s-ol@users.noreply.github.com>2020-03-24 11:39:25 +0000
commit677c0d2f01e14bbeca1583ec7878d80c71c3aa68 (patch)
treecc20e04697da590b546de370599eeaaef647d20c /core/stream/init.moon
parentinternals/plugin-guide: first draft (diff)
downloadalive-677c0d2f01e14bbeca1583ec7878d80c71c3aa68.tar.gz
alive-677c0d2f01e14bbeca1583ec7878d80c71c3aa68.zip
Value -> Value/Event/IO-Stream
Close 12
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
+}