Listory/src/music-library/genre.repository.ts

6 lines
180 B
TypeScript
Raw Normal View History

import { EntityRepository, Repository } from "typeorm";
import { Genre } from "./genre.entity";
@EntityRepository(Genre)
export class GenreRepository extends Repository<Genre> {}