wip
This commit is contained in:
6
packages/racing/domain/repositories/IGameRepository.ts
Normal file
6
packages/racing/domain/repositories/IGameRepository.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
import type { Game } from '../entities/Game';
|
||||
|
||||
export interface IGameRepository {
|
||||
findById(id: string): Promise<Game | null>;
|
||||
findAll(): Promise<Game[]>;
|
||||
}
|
||||
Reference in New Issue
Block a user