Flask - WebSocket and Real-Time
Given this Flask-SocketIO code snippet, what will the client receive when the server emits 'message' event?
from flask_socketio import SocketIO, emit
socketio = SocketIO(app)
@socketio.on('connect')
def handle_connect():
emit('message', {'data': 'Welcome!'})