feat: implement go_links table and update database connection handling

This commit is contained in:
yuanhau 2025-05-10 06:55:28 +08:00
parent 4aab557523
commit 1208866757
4 changed files with 44 additions and 14 deletions

View file

@ -0,0 +1,7 @@
import { SQL } from "bun";
const postgres = new SQL({
url: process.env.POSTGRES_URL,
})
export default postgres;