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..647e06c01 --- /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")] |