diff options
Diffstat (limited to 'module/plugins/accounts')
| -rw-r--r-- | module/plugins/accounts/JunocloudMe.py | 16 | 
1 files changed, 16 insertions, 0 deletions
| diff --git a/module/plugins/accounts/JunocloudMe.py b/module/plugins/accounts/JunocloudMe.py new file mode 100644 index 000000000..8cd7e8dde --- /dev/null +++ b/module/plugins/accounts/JunocloudMe.py @@ -0,0 +1,16 @@ +# -*- coding: utf-8 -*- + +from module.plugins.internal.XFSPAccount import XFSPAccount + + +class JunocloudMe(XFSPAccount): +    __name__ = "JunocloudMe" +    __type__ = "account" +    __version__ = "0.01" + +    __description__ = """Junocloud.me account plugin""" +    __license__ = "GPLv3" +    __authors__ = [("guidobelix", "guidobelix@hotmail.it")] + + +    HOSTER_URL = "http://www.junocloud.me/" | 
