# Python imports # Lib imports # Apoplication imports class MessageHandler: def __init__(self): print("MessageHandler initialized...") def create(self, type, text): return '{"message": { "type": "' + type + '", "text": "' + text + '" } }'