10 lines
No EOL
131 B
Python
10 lines
No EOL
131 B
Python
"""
|
|
The MongoDB processor
|
|
"""
|
|
|
|
from processor import Processor
|
|
|
|
class Mongodb(Processor):
|
|
def __init__(self):
|
|
pass
|
|
|