File size: 316 Bytes
c09f67c | 1 2 3 4 5 6 7 8 9 10 11 12 13 | import { db } from "@midday/db/client";
import type { MiddlewareHandler } from "hono";
/**
* Database middleware that connects to the database and sets it on context
*/
export const withDatabase: MiddlewareHandler = async (c, next) => {
// Use singleton database instance
c.set("db", db);
await next();
};
|