fixed crashing all services

This commit is contained in:
Maieul BOYER 2025-12-22 18:38:11 +01:00 committed by Maix0
parent e7bf718fa6
commit 4a58f2e98b

View file

@ -31,10 +31,10 @@ export const TicTacToeImpl: Omit<ITicTacToeDb, keyof Database> = {
// },
};
export type TicTacToeId = number & { readonly __brand: unique symbol };
export type GameId = number & { readonly __brand: unique symbol };
export type TicTacToeData = {
readonly id: TicTacToeId;
readonly id: GameId;
readonly player1: string;
readonly player2: string;
readonly outcome: string;
@ -51,4 +51,4 @@ export type TicTacToeData = {
// }
// silence warnings
void privateFunction;
// void privateFunction;