1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/entities/Template.ts b/src/util/entities/Template.ts
index c417f1f0..101329d1 100644
--- a/src/util/entities/Template.ts
+++ b/src/util/entities/Template.ts
@@ -17,12 +17,12 @@
*/
import { Column, Entity, JoinColumn, ManyToOne, RelationId } from "typeorm";
-import { BaseClass } from "./BaseClass";
+import { EntityCache } from "../cache";
import { Guild } from "./Guild";
import { User } from "./User";
@Entity("templates")
-export class Template extends BaseClass {
+export class Template extends EntityCache {
@Column({ unique: true })
code: string;
|