From a643ab28b0d0bcd27326ad77c8a9e8078d8b13f1 Mon Sep 17 00:00:00 2001 From: Kaede Fujisaki Date: Sat, 23 Mar 2024 09:00:44 +0900 Subject: [PATCH] Remove unused imports --- server/src/repo/Repo.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/src/repo/Repo.ts b/server/src/repo/Repo.ts index 87de7ba..8acb0ee 100644 --- a/server/src/repo/Repo.ts +++ b/server/src/repo/Repo.ts @@ -1,9 +1,9 @@ import dayjs from 'dayjs'; import NodeCache from 'node-cache'; -import { ResultRecord, ResultRow } from 'ts-postgres'; +import { ResultRecord } from 'ts-postgres'; import Pool from './Pool.js'; -import { Entity, ImageEntity } from '../shelf/Entity.js'; +import { Entity } from '../shelf/Entity.js'; import Config from '../Config.js'; import { Moment, MomentSummary } from '../shelf/Moment.js';