aboutsummaryrefslogtreecommitdiffstats
path: root/core/base/init.moon
diff options
context:
space:
mode:
Diffstat (limited to 'core/base/init.moon')
-rw-r--r--core/base/init.moon4
1 files changed, 3 insertions, 1 deletions
diff --git a/core/base/init.moon b/core/base/init.moon
index 64b34f4..bb35140 100644
--- a/core/base/init.moon
+++ b/core/base/init.moon
@@ -12,6 +12,7 @@
-- @see match
-- @see Value
-- @see Result
+-- @see Error
import IO from require 'core.base.io'
import Op from require 'core.base.op'
@@ -21,6 +22,7 @@ import Input from require 'core.base.input'
import match from require 'core.base.match'
import Value from require 'core.value'
import Result from require 'core.result'
+import Error from require 'core.error'
{
:IO
@@ -31,5 +33,5 @@ import Result from require 'core.result'
:match
-- redundant exports, to keep anything an extension might need in one import
- :Value, :Result
+ :Value, :Result, :Error
}