added some args stuff, added dummy shell parser, renamed classes in processors...

This commit is contained in:
Johannes Findeisen 2013-06-19 04:45:23 +02:00
commit ae6206c750
33 changed files with 28 additions and 2956 deletions

14
lib/processors/mariadb.py Normal file
View file

@ -0,0 +1,14 @@
"""
The MariaDB processor
"""
from processor import Processor
class MariadbProcessor(Processor):
def __init__(self):
pass
def create(kwargs):
return MariadbProcessor(**kwargs)