summaryrefslogtreecommitdiff
path: root/service/app/leap/mailconverter.py
diff options
context:
space:
mode:
Diffstat (limited to 'service/app/leap/mailconverter.py')
-rw-r--r--service/app/leap/mailconverter.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/service/app/leap/mailconverter.py b/service/app/leap/mailconverter.py
new file mode 100644
index 00000000..e05b2c30
--- /dev/null
+++ b/service/app/leap/mailconverter.py
@@ -0,0 +1,21 @@
+class MailConverter:
+
+ def __init__(self, client):
+ pass
+
+ def from_mail(self, inbox_mail):
+ raise NotImplementedError()
+
+
+ def to_mail(self, pixelated_mail, account):
+ raise NotImplementedError()
+
+
+ def from_tag(self, inbox_tag):
+ raise NotImplementedError()
+
+
+ def from_contact(self, inbox_contact):
+ raise NotImplementedError()
+
+