chore: init

This commit is contained in:
Cfp
2025-06-20 16:37:16 +02:00
commit 70516441f2
9 changed files with 625 additions and 0 deletions

5
src/db.ts Normal file
View File

@ -0,0 +1,5 @@
import { Pool } from "pg";
export const pool = new Pool({
connectionString: process.env.DATABASE_URL
})