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

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

            return(NotFound());
        }