public IActionResult StartGame(Guid game_id) { Board board = gameHandler.GetBoard(game_id); try { board.StartGame(); return(Ok("Started the game! No new players can be added.")); } catch (Exception e) { return(BadRequest(e.Message)); } }