Remove redundant dotenv import from index.js

This commit is contained in:
2025-12-21 00:08:42 +01:00
parent 16cba64d03
commit 683eabecdd

View File

@@ -10,7 +10,6 @@ import lobbyRoutes from './routes/lobby.js';
import walletRoutes from './routes/wallet.js'; import walletRoutes from './routes/wallet.js';
import pool from './db.js'; import pool from './db.js';
import { setupWebSocket } from './ws.js'; import { setupWebSocket } from './ws.js';
import dotenv from 'dotenv';
dotenv.config(); dotenv.config();
const app = express(); const app = express();