export const sendMatchGameOver = matchId => {
  channel
    .push('tournament:match:game_over', { match_id: matchId })
    .receive('error', error => console.error(error));
};