mirror of
https://github.com/apricote/Listory.git
synced 2026-02-07 10:17:02 +00:00
6 lines
180 B
TypeScript
6 lines
180 B
TypeScript
|
|
import { EntityRepository, Repository } from "typeorm";
|
||
|
|
import { Track } from "./track.entity";
|
||
|
|
|
||
|
|
@EntityRepository(Track)
|
||
|
|
export class TrackRepository extends Repository<Track> {}
|