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