2013-06-19 04:45:23 +02:00
|
|
|
"""
|
|
|
|
|
The MariaDB processor
|
|
|
|
|
"""
|
|
|
|
|
|
2013-06-19 23:09:57 +02:00
|
|
|
from lib.processors.processor import Processor
|
2013-06-19 04:45:23 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
class MariadbProcessor(Processor):
|
2013-06-19 23:35:30 +02:00
|
|
|
def __init__(self, **kwargs):
|
2013-06-21 03:34:10 +02:00
|
|
|
Processor.__init__(self, **kwargs)
|
2013-06-19 04:45:23 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
def create(kwargs):
|
|
|
|
|
return MariadbProcessor(**kwargs)
|