1import { drizzle } from "drizzle-orm/node-postgres"; 2import pg from "pg"; 3 4const pool = new pg.Pool({ 5 connectionString: Deno.env.get("XATA_POSTGRES_URL"), 6 max: 20, 7}); 8const db = drizzle(pool); 9 10export default { db };