feat(server): save genres for artists and albums

This can later be used for reports
This commit is contained in:
Julian Tölle 2021-05-25 19:23:42 +02:00
parent 9b96d0fab4
commit 3c6f3289f1
12 changed files with 225 additions and 0 deletions

View file

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