Remove unused import

This commit is contained in:
absoluteSpacehead 2024-02-05 20:57:02 +00:00
parent 58c8eb49b6
commit a74e03cde9

View File

@ -1,4 +1,4 @@
import { BaseEntity, BeforeInsert, BeforeRemove, Column, Entity, ManyToOne, OneToMany, PrimaryGeneratedColumn, IsNull } from "typeorm";
import { BaseEntity, BeforeInsert, BeforeRemove, Column, Entity, ManyToOne, OneToMany, PrimaryGeneratedColumn } from "typeorm";
import { FULL_SERVER_ROOT, SAVED_DATA_PATH } from "../Modules/Constants";
import { Rating } from "./Rating";
import { existsSync, mkdirSync, rmSync } from "fs";