chore: use node

This commit is contained in:
Praveen Thirumurugan
2025-12-28 02:09:13 +05:30
parent 61aa31743b
commit 8022118500
2 changed files with 3 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
const path = require('path');
const path = require('node:path');
require('dotenv').config({ path: path.resolve(__dirname, '../.env') });

View File

@@ -37,8 +37,8 @@
import "dotenv/config";
import http, { IncomingMessage, ServerResponse } from "http";
import { TextDecoder } from "util";
import http, { IncomingMessage, ServerResponse } from "node:http";
import { TextDecoder } from "node:util";
import { Pool } from "pg";
import { v4 as uuidv4 } from "uuid";