diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-10-22 02:46:41 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-10-22 02:46:41 +0200 |
commit | 158af284441a2c0261f32398e6b30edfc05165a8 (patch) | |
tree | 671b0172769a499a8455c490a5859b54923b3cd4 /module/plugins/accounts | |
parent | Merge pull request #2095 from GammaC0de/patch-6 (diff) | |
download | pyload-158af284441a2c0261f32398e6b30edfc05165a8.tar.xz |
New account: OpenloadCo
Diffstat (limited to 'module/plugins/accounts')
-rw-r--r-- | module/plugins/accounts/OpenloadCo.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/module/plugins/accounts/OpenloadCo.py b/module/plugins/accounts/OpenloadCo.py new file mode 100644 index 000000000..0eb1cd050 --- /dev/null +++ b/module/plugins/accounts/OpenloadCo.py @@ -0,0 +1,17 @@ +# -*- coding: utf-8 -*- + +from module.plugins.internal.XFSAccount import XFSAccount + + +class OpenloadCo(XFSAccount): + __name__ = "OpenloadCo" + __type__ = "account" + __version__ = "0.01" + __status__ = "testing" + + __description__ = """Openload.co account plugin""" + __license__ = "GPLv3" + __authors__ = [("Walter Purcaro", "vuolter@gmail.com")] + + + PLUGIN_DOMAIN = "openload.co" |