feat: Conveert bin folder to use JS files

This commit is contained in:
Faruk AYDIN
2024-01-04 21:07:19 +01:00
parent 85141812d9
commit 75f5db23df
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;