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