Skip to content

Commit 99d5221

Browse files
committed
refactor(eb-app-api): import postgres from jsr
1 parent c3749b3 commit 99d5221

3 files changed

Lines changed: 28 additions & 134 deletions

File tree

machines/eb-app-api/home/api/galaxy/deno.lock

Lines changed: 25 additions & 128 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

machines/eb-app-api/home/api/galaxy/lib/database/common.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
1-
import { Pool } from "https://deno.land/x/postgres@v0.19.3/mod.ts";
2-
import {
3-
QueryArguments,
4-
QueryObjectResult,
5-
} from "https://deno.land/x/postgres@v0.19.3/query/query.ts";
1+
import { Pool } from "jsr:@db/postgres";
2+
import { QueryArguments, QueryObjectResult } from "jsr:@db/postgres";
63
import {
74
DB_HOST,
85
DB_NAME,

machines/eb-app-api/home/api/galaxy/lib/database/meeting-session.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Transaction } from "https://deno.land/x/postgres@v0.19.3/mod.ts";
1+
import { Transaction } from "jsr:@db/postgres";
22
import { fetch } from "./common.ts";
33
import type { Attr, MeetingSessionForReminder } from "./types.ts";
44

0 commit comments

Comments
 (0)