mirror of
https://github.com/beilunyang/moemail.git
synced 2026-05-12 02:21:34 +08:00
5 lines
216 B
TypeScript
5 lines
216 B
TypeScript
import { getRequestContext } from "@cloudflare/next-on-pages"
|
|
import { drizzle } from "drizzle-orm/d1"
|
|
import * as schema from "./schema"
|
|
|
|
export const createDb = () => drizzle(getRequestContext().env.DB, { schema }) |