import { Game } from "../gaming/Game";
export interface GameRepository {
    findByName(name: string): Promise<Game>;
}
