introduce dummy processor

This commit is contained in:
shim_
2018-05-10 18:00:08 +02:00
parent 20e87b7ad8
commit 7d03577f4d
2 changed files with 8 additions and 4 deletions

View File

@@ -17,6 +17,10 @@ class Processor:
def upload(self,file):
pass
class DummyProcessor(Processor):
def is_configured(self):
return False
class DefaultProcessor(Processor):