XThomasBU
Added comments to the base classes
7a98bd3
raw
history blame
No virus
290 Bytes
# Template for chat processor classes
class ChatProcessorBase:
def __init__(self, config):
self.config = config
def process(self, message):
"""
Processes and Logs the message
"""
raise NotImplementedError("process method not implemented")