summaryrefslogtreecommitdiffstats
path: root/module/plugins/accounts
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/accounts')
-rw-r--r--module/plugins/accounts/AniStreamCom.py17
-rw-r--r--module/plugins/accounts/CloudsixMe.py17
2 files changed, 34 insertions, 0 deletions
diff --git a/module/plugins/accounts/AniStreamCom.py b/module/plugins/accounts/AniStreamCom.py
new file mode 100644
index 000000000..53ca1d5b8
--- /dev/null
+++ b/module/plugins/accounts/AniStreamCom.py
@@ -0,0 +1,17 @@
+# -*- coding: utf-8 -*-
+
+from module.plugins.internal.XFSAccount import XFSAccount
+
+
+class AniStreamCom(XFSAccount):
+ __name__ = "AniStreamCom"
+ __type__ = "account"
+ __version__ = "0.01"
+ __status__ = "testing"
+
+ __description__ = """Ani-Stream.com account plugin"""
+ __license__ = "GPLv3"
+ __authors__ = [("Walter Purcaro", "vuolter@gmail.com")]
+
+
+ HOSTER_DOMAIN = "ani-stream.com"
diff --git a/module/plugins/accounts/CloudsixMe.py b/module/plugins/accounts/CloudsixMe.py
new file mode 100644
index 000000000..973e37044
--- /dev/null
+++ b/module/plugins/accounts/CloudsixMe.py
@@ -0,0 +1,17 @@
+# -*- coding: utf-8 -*-
+
+from module.plugins.internal.XFSAccount import XFSAccount
+
+
+class CloudsixMe(XFSAccount):
+ __name__ = "CloudsixMe"
+ __type__ = "account"
+ __version__ = "0.01"
+ __status__ = "testing"
+
+ __description__ = """Cloudsix.me account plugin"""
+ __license__ = "GPLv3"
+ __authors__ = [("Walter Purcaro", "vuolter@gmail.com")]
+
+
+ HOSTER_DOMAIN = "cloudsix.me"