Files
2024-01-07 19:36:44 +01:00

10 lines
136 B
JavaScript

import pg from 'pg';
const client = new pg.Client({
host: 'localhost',
user: 'postgres',
port: 5432,
});
export default client;