feat: Convert bin files to use JS

This commit is contained in:
Faruk AYDIN
2024-01-04 12:17:30 +01:00
parent b693c12500
commit 283c644285
5 changed files with 5 additions and 6 deletions

View File

@@ -0,0 +1,9 @@
import { Client } from 'pg';
const client = new Client({
host: 'localhost',
user: 'postgres',
port: 5432,
});
export default client;