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

15 lines
280 B
Python
Raw Normal View History

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