1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/entities/Stream.ts b/src/util/entities/Stream.ts
index 0b98df1e..54f33126 100644
--- a/src/util/entities/Stream.ts
+++ b/src/util/entities/Stream.ts
@@ -1,7 +1,7 @@
import { Column, Entity, JoinColumn, ManyToOne, RelationId } from "typeorm";
import { BaseClass } from "./BaseClass";
-import { User } from "./User";
-import { Channel } from "./Channel";
+import type { User } from "./User";
+import type { Channel } from "./Channel";
@Entity({
name: "streams",
|