mirror of
https://github.com/kennethnym/aris.git
synced 2026-03-20 17:11:17 +00: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,
|
||
|
|
})
|