feat: contact to frontpage and biome

This commit is contained in:
DESKTOP-RTLN3BA\$punk 2025-09-30 22:15:55 -07:00
parent e305bc4796
commit 1a1530957a
4 changed files with 65 additions and 64 deletions

View file

@ -1,6 +1,6 @@
import { drizzle } from 'drizzle-orm/postgres-js'
import postgres from 'postgres'
import * as schema from './schema'
import { drizzle } from "drizzle-orm/postgres-js";
import postgres from "postgres";
import * as schema from "./schema";
const client = postgres(process.env.DATABASE_URL!)
const client = postgres(process.env.DATABASE_URL!);
export const db = drizzle({ client, schema });