Files
gridpilot.gg/packages/racing/domain/repositories/IGameRepository.ts
2025-12-04 23:31:55 +01:00

6 lines
159 B
TypeScript

import type { Game } from '../entities/Game';
export interface IGameRepository {
findById(id: string): Promise<Game | null>;
findAll(): Promise<Game[]>;
}