From b873ec390f84fa86049ba107d5d574dbb9d51538 Mon Sep 17 00:00:00 2001 From: apetitco Date: Sat, 20 Dec 2025 01:22:55 +0100 Subject: [PATCH] (tic-tac-toe): Laid the foundations for tic tac toe/database interactions --- src/tic-tac-toe/src/app.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/tic-tac-toe/src/app.ts b/src/tic-tac-toe/src/app.ts index 7238b0b..4e18aa8 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 { TicTacToeData } from '@shared/database/mixin/tictactoe'; +import type { TicTacToeImpl } from '@shared/database/mixin/tictactoe'; declare const __SERVICE_NAME: string; @@ -83,6 +83,7 @@ async function onReady(fastify: FastifyInstance, game: TTC) { turn: game.currentPlayer, lastResult: result, }); +// setGameOutcome(); } });