diff options
Diffstat (limited to 'module/plugins/accounts/VidPlayNet.py')
-rw-r--r-- | module/plugins/accounts/VidPlayNet.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/module/plugins/accounts/VidPlayNet.py b/module/plugins/accounts/VidPlayNet.py new file mode 100644 index 000000000..4c542024e --- /dev/null +++ b/module/plugins/accounts/VidPlayNet.py @@ -0,0 +1,15 @@ +# -*- coding: utf-8 -*- + +from module.plugins.internal.XFSPAccount import XFSPAccount + + +class VidPlayNet(XFSPAccount): + __name__ = "VidPlayNet" + __type__ = "account" + __version__ = "0.01" + + __description__ = """VidPlay.net account plugin""" + __authors__ = [("Walter Purcaro", "vuolter@gmail.com")] + + + HOSTER_URL = "http://www.vidplay.net/" |