diff options
| author | 2015-01-13 23:25:45 +0100 | |
|---|---|---|
| committer | 2015-01-13 23:25:45 +0100 | |
| commit | 8144d3c78df968ae00e35c327730af981220ac89 (patch) | |
| tree | 9499fb887aea2e1d8c77f27e7dc8863bda8b0851 /module/plugins/accounts | |
| parent | [XFileSharingPro] Update BUILTIN lists (diff) | |
| download | pyload-8144d3c78df968ae00e35c327730af981220ac89.tar.xz | |
New plugin: ExashareCom
Diffstat (limited to 'module/plugins/accounts')
| -rw-r--r-- | module/plugins/accounts/ExashareCom.py | 16 | 
1 files changed, 16 insertions, 0 deletions
diff --git a/module/plugins/accounts/ExashareCom.py b/module/plugins/accounts/ExashareCom.py new file mode 100644 index 000000000..431798522 --- /dev/null +++ b/module/plugins/accounts/ExashareCom.py @@ -0,0 +1,16 @@ +# -*- coding: utf-8 -*- + +from module.plugins.internal.XFSAccount import XFSAccount + + +class ExashareCom(XFSAccount): +    __name__    = "ExashareCom" +    __type__    = "account" +    __version__ = "0.01" + +    __description__ = """Exashare.com account plugin""" +    __license__     = "GPLv3" +    __authors__     = [("Walter Purcaro", "vuolter@gmail.com")] + + +    HOSTER_DOMAIN = "exashare.com"  | 
