10 lines
No EOL
125 B
Python
10 lines
No EOL
125 B
Python
"""
|
|
The syslog processor
|
|
"""
|
|
|
|
from processor import Processor
|
|
|
|
|
|
class Syslog(Processor):
|
|
def __init__(self):
|
|
pass |