mirror of
https://github.com/hpware/news-analyze.git
synced 2025-06-23 13:04:23 +00:00
7 lines
118 B
TypeScript
7 lines
118 B
TypeScript
import { SQL } from "bun";
|
|
|
|
const postgres = new SQL({
|
|
url: process.env.POSTGRES_URL,
|
|
});
|
|
|
|
export default postgres;
|