diff --git a/src/connectors/postgresql.ts b/src/connectors/postgresql.ts index bd85989..a5c916a 100644 --- a/src/connectors/postgresql.ts +++ b/src/connectors/postgresql.ts @@ -4,7 +4,7 @@ import type { Connector, Statement } from "../types"; export type ConnectorOptions = { url: string } | ClientConfig; -export default function sqliteConnector(opts: ConnectorOptions) { +export default function postgresqlConnector(opts: ConnectorOptions) { let _client: undefined | Client | Promise<Client>; function getClient() { if (_client) {