From 59dba432571f9b7d2eb6188521bd7afb477d0de0 Mon Sep 17 00:00:00 2001 From: Nathaniel Tampus Date: Sun, 19 Mar 2023 21:41:19 +0800 Subject: [PATCH] remove extra imports --- server/src/controllers/auth.controller.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/server/src/controllers/auth.controller.ts b/server/src/controllers/auth.controller.ts index fb5042c..4029a4b 100644 --- a/server/src/controllers/auth.controller.ts +++ b/server/src/controllers/auth.controller.ts @@ -7,9 +7,6 @@ import { activeGames } from "../db/models/game.model.js"; import { io } from "../server.js"; import * as UserModel from "../db/models/user.model.js"; -import { activeGames } from "../db/models/game.model.js"; -import { io } from "../server.js"; - export const getCurrentSession = async (req: Request, res: Response) => { try { if (req.session.user) {