public async Task <IActionResult> Get([Required] string leagueCode)
        {
            var exists = await _competitionService.AlreadyImported(leagueCode);

            if (!exists)
            {
                return(NotFound(new Result("Not found")));
            }

            int count = await _competitionService.CountPlayersByCompetition(leagueCode);

            return(Ok(new PlayerCount(count)));
        }