import { drizzle } from 'npm:drizzle-orm/postgres-js';
import postgres from 'npm:postgres';
const connectionString = Deno.env.get('DATABASE_URL')!;
const postgres_client = postgres(connectionString, { prepare: false });
const postgres_db = drizzle(postgres_client);
import { drizzle } from 'npm:drizzle-orm/postgres-js';
import postgres from 'npm:postgres';
const connectionString = Deno.env.get('DATABASE_URL')!;
const postgres_client = postgres(connectionString, { prepare: false });
const postgres_db = drizzle(postgres_client);