Flask - WebSocket and Real-Time
Given this code snippet, what will be the output sent to the room 'chatroom1'?
from flask_socketio import send, join_room
@socketio.on('join')
def on_join(data):
room = data['room']
join_room(room)
send('User has entered the room.', room=room)