import type { Game } from '../entities/Game'; export interface IGameRepository { findById(id: string): Promise; findAll(): Promise; }