linspector-old/lib/processors/syslog.py

13 lines
175 B
Python
Raw Normal View History

2013-06-18 05:39:37 +02:00
"""
The syslog processor
"""
from processor import Processor
class Syslog(Processor):
def __init__(self):
pass
def create(kwargs):
return Syslog(**kwargs)