mirror of
https://github.com/apricote/Listory.git
synced 2026-02-07 18:27:03 +00:00
6 lines
180 B
TypeScript
6 lines
180 B
TypeScript
|
|
import { EntityRepository, Repository } from "typeorm";
|
||
|
|
import { Album } from "./album.entity";
|
||
|
|
|
||
|
|
@EntityRepository(Album)
|
||
|
|
export class AlbumRepository extends Repository<Album> {}
|