10 lines
141 B
JavaScript
10 lines
141 B
JavaScript
import { Client } from 'pg';
|
|
|
|
const client = new Client({
|
|
host: 'localhost',
|
|
user: 'postgres',
|
|
port: 5432,
|
|
});
|
|
|
|
export default client;
|