From a76f5b3839ad724434750aea40b13d40f7e7e189 Mon Sep 17 00:00:00 2001 From: Nathaniel Tampus Date: Sun, 19 Mar 2023 21:45:43 +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) {