diff options
author | mkaay <mkaay@mkaay.de> | 2010-05-17 00:01:05 +0200 |
---|---|---|
committer | mkaay <mkaay@mkaay.de> | 2010-05-17 00:01:05 +0200 |
commit | 32ba2f79389ccf4f7d40197837c02d28bb13261d (patch) | |
tree | 893de3556630eaa8242fa0fe3550039cab210b09 /module/plugins/Container.py | |
parent | new config option (outgoing intreface) (diff) | |
download | pyload-32ba2f79389ccf4f7d40197837c02d28bb13261d.tar.xz |
new plugin interface test, ShareonlineBiz + SerienjunkiesOrg + MegauploadedCom fix, other stuff
Diffstat (limited to 'module/plugins/Container.py')
-rw-r--r-- | module/plugins/Container.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/module/plugins/Container.py b/module/plugins/Container.py index 2a7196f14..794c52508 100644 --- a/module/plugins/Container.py +++ b/module/plugins/Container.py @@ -27,3 +27,15 @@ class Container(Plugin): __description__ = """Base container plugin""" __author_name__ = ("mkaay") __author_mail__ = ("mkaay@mkaay.de") + + def decrypt(self): + pass + + def createNewPackage(self): + return False + + def getPackages(self): + return [] + + def getLinks(self): + return [] |