Add in the example how to add the event name ``` server.route({ method: 'GET', path: '/', handler: function (request, reply) { reply.event({ event : 'event_name' , data: 'my data' }); } }); ``` It got me confused...