diff options
author | Stefano <l.stickell@yahoo.it> | 2013-03-05 21:35:46 +0100 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2013-03-05 21:35:46 +0100 |
commit | 38872d9cdd0d659e9d92fccad01852dd47af8457 (patch) | |
tree | de039b288f8c2da2a1825c7ee7982eaf5d1a8274 /module/plugins/accounts | |
parent | New hoster: ShareFilesCo (diff) | |
download | pyload-38872d9cdd0d659e9d92fccad01852dd47af8457.tar.xz |
New account plugin for ShareFilesCo
Diffstat (limited to 'module/plugins/accounts')
-rw-r--r-- | module/plugins/accounts/ShareFilesCo.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/module/plugins/accounts/ShareFilesCo.py b/module/plugins/accounts/ShareFilesCo.py new file mode 100644 index 000000000..0d8ea6635 --- /dev/null +++ b/module/plugins/accounts/ShareFilesCo.py @@ -0,0 +1,12 @@ +# -*- coding: utf-8 -*- +from module.plugins.internal.XFSPAccount import XFSPAccount + +class ShareFilesCo(XFSPAccount): + __name__ = "ShareFilesCo" + __version__ = "0.01" + __type__ = "account" + __description__ = """ShareFilesCo account plugin""" + __author_name__ = ("stickell") + __author_mail__ = ("l.stickell@yahoo.it") + + MAIN_PAGE = "http://sharefiles.co/" |