Flask-Project-Template/src/core/utils/MessageHandler.py

16 lines
284 B
Python

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