diff --git a/src/index.ts b/src/index.ts index 0b84842..bac364f 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,17 +1,9 @@ /* Import packages */ import dotenv from "dotenv"; import express, { Express } from "express"; -import kill from "kill-port"; dotenv.config(); -// Kill process if port is in use -try { - kill(6543, "tcp"); -} catch (error) { - /* Empty */ -} - // Clear console console.clear();