public async Task <IActionResult> GetMatchByMatchIdAsync(long matchId, string server)
        {
            var result = await matchesService.GetMatchByMatchIdAsync(matchId, server);

            if (result.IsSuccess)
            {
                return(Ok(result.Match));
            }

            return(NotFound());
        }