diff options
Diffstat (limited to 'pyload/plugin/hoster/IfileIt.py')
-rw-r--r-- | pyload/plugin/hoster/IfileIt.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/pyload/plugin/hoster/IfileIt.py b/pyload/plugin/hoster/IfileIt.py new file mode 100644 index 000000000..1b851477a --- /dev/null +++ b/pyload/plugin/hoster/IfileIt.py @@ -0,0 +1,16 @@ +# -*- coding: utf-8 -*- + +from pyload.plugin.internal.DeadHoster import DeadHoster + + +class IfileIt(DeadHoster): + __name__ = "IfileIt" + __type__ = "hoster" + __version__ = "0.29" + + __pattern__ = r'^unmatchable$' + __config__ = [] + + __description__ = """Ifile.it""" + __license__ = "GPLv3" + __authors__ = [("zoidberg", "zoidberg@mujmail.cz")] |