news-analyze/server/components/postgres.ts
2025-05-10 22:05:10 +08:00

7 lines
118 B
TypeScript

import { SQL } from "bun";
const postgres = new SQL({
url: process.env.POSTGRES_URL,
});
export default postgres;