aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ipc/handler.go
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ipc/handler.go')
-rw-r--r--lib/ipc/handler.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/ipc/handler.go b/lib/ipc/handler.go
new file mode 100644
index 00000000..fb8f0e06
--- /dev/null
+++ b/lib/ipc/handler.go
@@ -0,0 +1,8 @@
+package ipc
+
+import "net/url"
+
+type Handler interface {
+ Mailto(addr *url.URL) error
+ Mbox(source string) error
+}