Removed abstract flag from class

ref #56
This commit is contained in:
Nicolai Ort 2020-12-29 19:32:20 +01:00
parent a738c19316
commit ce55dce011
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ import { Column, Entity, PrimaryGeneratedColumn } from "typeorm";
* StatsClients can be used to access the protected parts of the stats api (top runners, donators and so on).
*/
@Entity()
export abstract class StatsClient {
export class StatsClient {
/**
* Autogenerated unique id (primary key).
*/