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