예제 #1
0
        public ActionResult StartGame(Difficulty difficulty)
        {
            string newGameCode = _triviaService.CreateNewGame(difficulty);

            return(Ok(newGameCode));
        }