diff options
author | Nitzo <nitzo2001@yahoo.com> | 2016-02-06 22:26:33 +0100 |
---|---|---|
committer | Nitzo <nitzo2001@yahoo.com> | 2016-02-06 22:26:33 +0100 |
commit | 7b1b7201b37161a83a592711e31742586ba9f81d (patch) | |
tree | 8a33e6e40123d3cd2d538b86b400697da849ec8a /module/plugins/accounts/FilejokerNet.py | |
parent | [XFSHoster] WAIT_PATTERN - use `parse_time` function (diff) | |
download | pyload-7b1b7201b37161a83a592711e31742586ba9f81d.tar.xz |
[New Hoster] filejoker.net
Diffstat (limited to 'module/plugins/accounts/FilejokerNet.py')
-rw-r--r-- | module/plugins/accounts/FilejokerNet.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/module/plugins/accounts/FilejokerNet.py b/module/plugins/accounts/FilejokerNet.py new file mode 100644 index 000000000..083be6039 --- /dev/null +++ b/module/plugins/accounts/FilejokerNet.py @@ -0,0 +1,18 @@ +# -*- coding: utf-8 -*- + +from module.plugins.internal.XFSAccount import XFSAccount + + +class FilejokerNet(XFSAccount): + __name__ = "FilejokerNet" + __type__ = "account" + __version__ = "0.01" + __status__ = "testing" + + __description__ = """Filejoker.net account plugin""" + __license__ = "GPLv3" + __authors__ = [("GammaC0de", "nitzo2001[AT]yahoo[DOT]com")] + + + PLUGIN_DOMAIN = "filejoker.net" + |