From 52f01b782ca4a15e5e6d3416235c8fa2d24310f9 Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Sun, 21 Aug 2022 14:34:20 +0200 Subject: [PATCH] patch(deno-client): export pgSql, pgClient from mod --- deno-client/mod.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/deno-client/mod.ts b/deno-client/mod.ts index f8e0983d2f..44a215d740 100644 --- a/deno-client/mod.ts +++ b/deno-client/mod.ts @@ -7,6 +7,8 @@ export { UserApi, WorkspaceApi } from './windmill-api/index.ts' +export { pgSql, pgClient } from './pg.ts' + export type Sql = string export type Email = string export type Base64 = string