lk-api-v2 / common /db.js
z90486091's picture
Baseline for multiagent and webhooks
770ce0b
raw
history blame contribute delete
192 Bytes
import pg from 'pg'
import { env } from '../config/utils.js'
const pool = new pg.Pool({ connectionString: env.LK_DATABASE_URL })
export const query = (sql, params) => pool.query(sql, params)