mirror of
https://github.com/apricote/Listory.git
synced 2026-02-08 02:37:03 +00:00
6 lines
180 B
TypeScript
6 lines
180 B
TypeScript
|
|
import { EntityRepository, Repository } from "typeorm";
|
||
|
|
import { Genre } from "./genre.entity";
|
||
|
|
|
||
|
|
@EntityRepository(Genre)
|
||
|
|
export class GenreRepository extends Repository<Genre> {}
|