mirror of
https://github.com/kennethnym/freya
synced 2026-06-20 00:21:18 +01:00
6 lines
106 B
TypeScript
6 lines
106 B
TypeScript
|
|
import { Pool } from "pg"
|
||
|
|
|
||
|
|
export const pool = new Pool({
|
||
|
|
connectionString: process.env.DATABASE_URL,
|
||
|
|
})
|