1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-09-19 17:52:45 +02:00

chore: correctly import pg client (#10637)

Follow-up to: https://github.com/Unleash/unleash/pull/10635

Correctly imports pg client.
This commit is contained in:
Nuno Góis 2025-09-09 13:38:14 +01:00 committed by GitHub
parent e3bc72483a
commit 71b0d424b8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,4 +1,5 @@
import { Client } from 'pg';
import postgresPkg from 'pg';
const { Client } = postgresPkg;
import type { IDBOption, Logger } from '../server-impl.js';
import { getDBPassword } from './aws-iam.js';