aboutsummaryrefslogtreecommitdiff
path: root/errors.go
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2025-01-02 19:30:51 +0000
committerRunxi Yu <me@runxiyu.org>2025-01-02 19:30:51 +0000
commit00f3cb9fb48cfb9768b695bd0d9eb8367ad84782 (patch)
tree2e35b4252b2538c7dbe13d90b501216ded240149 /errors.go
parentFile splitting (diff)
downloadmaild-00f3cb9fb48cfb9768b695bd0d9eb8367ad84782.tar.gz
maild-00f3cb9fb48cfb9768b695bd0d9eb8367ad84782.tar.zst
maild-00f3cb9fb48cfb9768b695bd0d9eb8367ad84782.zip
Deliver to inbox
Diffstat (limited to '')
-rw-r--r--errors.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/errors.go b/errors.go
new file mode 100644
index 0000000..0d6a8d7
--- /dev/null
+++ b/errors.go
@@ -0,0 +1,9 @@
+package main
+
+import (
+ "errors"
+)
+
+var (
+ err_deliver_write = errors.New("unable to write to filesystem while attempting to deliver message")
+)