14 lines
No EOL
221 B
Python
14 lines
No EOL
221 B
Python
"""
|
|
The MongoDB processor
|
|
"""
|
|
|
|
from lib.processors.processor import Processor
|
|
|
|
|
|
class MongodbProcessor(Processor):
|
|
def __init__(self, **kwargs):
|
|
pass
|
|
|
|
|
|
def create(kwargs):
|
|
return MongodbProcessor(**kwargs) |