From d97c57f66ef5e49653929fc44882ff4cdf0c980b Mon Sep 17 00:00:00 2001 From: Dries Augustyns Date: Tue, 23 Jul 2024 18:53:42 +0200 Subject: [PATCH] Remove unused PORT import --- packages/api/src/app.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/api/src/app.ts b/packages/api/src/app.ts index 394b224..43093ac 100644 --- a/packages/api/src/app.ts +++ b/packages/api/src/app.ts @@ -10,7 +10,7 @@ import { type NextFunction, type Request, type Response, json } from "express"; import helmet from "helmet"; import morgan from "morgan"; import signale from "signale"; -import { API_URI, NODE_ENV, PORT } from "./app/constants"; +import { API_URI, NODE_ENV } from "./app/constants"; import { task } from "./app/cron"; import { Auth } from "./controllers/Auth"; import { Identities } from "./controllers/Identities";