diff --git a/src/tic-tac-toe/src/app.ts b/src/tic-tac-toe/src/app.ts index 4e18aa8..977bb8f 100644 --- a/src/tic-tac-toe/src/app.ts +++ b/src/tic-tac-toe/src/app.ts @@ -7,7 +7,7 @@ import * as auth from '@shared/auth'; import * as swagger from '@shared/swagger'; import * as utils from '@shared/utils'; import { Server } from 'socket.io'; -import type { TicTacToeImpl } from '@shared/database/mixin/tictactoe'; +// import type { TicTacToeImpl } from '@shared/database/mixin/tictactoe'; declare const __SERVICE_NAME: string; @@ -83,7 +83,7 @@ async function onReady(fastify: FastifyInstance, game: TTC) { turn: game.currentPlayer, lastResult: result, }); -// setGameOutcome(); + // setGameOutcome(); } }); diff --git a/src/tic-tac-toe/src/game.ts b/src/tic-tac-toe/src/game.ts index 0d929ad..721ec91 100644 --- a/src/tic-tac-toe/src/game.ts +++ b/src/tic-tac-toe/src/game.ts @@ -1,4 +1,4 @@ -import type { TicTacToeData } from '@shared/database/mixin/tictactoe'; +// import type { TicTacToeData } from '@shared/database/mixin/tictactoe'; // Represents the possible states of a cell on the board. // `null` means that the cell is empty.