From 677c0d2f01e14bbeca1583ec7878d80c71c3aa68 Mon Sep 17 00:00:00 2001 From: s-ol Date: Tue, 24 Mar 2020 12:39:25 +0100 Subject: Value -> Value/Event/IO-Stream Close 12 --- core/stream/init.moon | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 core/stream/init.moon (limited to 'core/stream/init.moon') 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 +} -- cgit v1.2.3