diff options
author | Walter Purcaro <vuolter@gmail.com> | 2015-01-13 23:15:42 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2015-01-13 23:15:42 +0100 |
commit | 660ddd365b0ee18609e05e6babe55f272bd3becd (patch) | |
tree | 299345a83a0a8c4d27e1b4808abce649fd5e31c6 /module/plugins/accounts | |
parent | Replace 'except' with 'except Exception' (diff) | |
download | pyload-660ddd365b0ee18609e05e6babe55f272bd3becd.tar.xz |
[XFileSharingPro] Update BUILTIN lists
Diffstat (limited to 'module/plugins/accounts')
-rw-r--r-- | module/plugins/accounts/JunkyvideoCom.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/module/plugins/accounts/JunkyvideoCom.py b/module/plugins/accounts/JunkyvideoCom.py new file mode 100644 index 000000000..8275ff176 --- /dev/null +++ b/module/plugins/accounts/JunkyvideoCom.py @@ -0,0 +1,16 @@ +# -*- coding: utf-8 -*- + +from module.plugins.internal.XFSAccount import XFSAccount + + +class JunkyvideoCom(XFSAccount): + __name__ = "JunkyvideoCom" + __type__ = "account" + __version__ = "0.01" + + __description__ = """Junkyvideo.com account plugin""" + __license__ = "GPLv3" + __authors__ = [("Walter Purcaro", "vuolter@gmail.com")] + + + HOSTER_DOMAIN = "junkyvideo.com" |