From 022b8d033a4b84003be6e53a0e8461027f23a7f4 Mon Sep 17 00:00:00 2001 From: Dave New Date: Tue, 25 Jun 2024 06:54:36 +0200 Subject: [PATCH] chore: prettier --- packages/functions-runtime/src/database.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/functions-runtime/src/database.js b/packages/functions-runtime/src/database.js index c81033072..2e2f11717 100644 --- a/packages/functions-runtime/src/database.js +++ b/packages/functions-runtime/src/database.js @@ -5,7 +5,7 @@ const pg = require("pg"); const { PROTO_ACTION_TYPES } = require("./consts"); const { withSpan } = require("./tracing"); import { NeonDialect } from "kysely-neon"; -import ws from 'ws'; +import ws from "ws"; // withDatabase is responsible for setting the correct database client in our AsyncLocalStorage // so that the the code in a custom function uses the correct client. @@ -192,4 +192,4 @@ getDatabaseClient(); module.exports.getDatabaseClient = getDatabaseClient; module.exports.useDatabase = useDatabase; -module.exports.withDatabase = withDatabase; \ No newline at end of file +module.exports.withDatabase = withDatabase;