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

16 lines
284 B
Python
Raw Normal View History

2019-11-01 22:54:25 +00:00
# Python imports
# Lib imports
# Apoplication imports
2019-11-01 22:54:25 +00:00
class MessageHandler:
def __init__(self):
print("MessageHandler initialized...")
def create_JSON_message(self, type, text):
2019-11-01 22:54:25 +00:00
return '{"message": { "type": "' + type + '", "text": "' + text + '" } }'