···22import type { google } from "@google-cloud/tasks/build/protos/protos";
33import { z } from "zod";
4455-import { and, eq, gte, lte, notInArray } from "@openstatus/db";
55+import { and, db, eq, gte, lte, notInArray } from "@openstatus/db";
66import {
77 type MonitorStatus,
88 maintenance,
···1414} from "@openstatus/db/src/schema";
1515import type { Region } from "@openstatus/db/src/schema/constants";
1616import { regionDict } from "@openstatus/regions";
1717-import { db } from "../lib/db";
1717+// import { db } from "../lib/db";
18181919import { getSentry } from "@hono/sentry";
2020import { getLogger } from "@logtape/logtape";
+1-2
apps/workflows/src/cron/monitor.ts
···22import type { google } from "@google-cloud/tasks/build/protos/protos";
33import {
44 and,
55- // db,
55+ db,
66 desc,
77 eq,
88 isNull,
···2121import { RateLimiter } from "limiter";
2222import { z } from "zod";
2323import { env } from "../env";
2424-import { db } from "../lib/db";
25242625const redis = Redis.fromEnv();
2726