mirror of
https://github.com/beilunyang/moemail.git
synced 2025-12-24 11:30:51 +08:00
8 lines
263 B
TypeScript
8 lines
263 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 })
|
|
|
|
export type Db = ReturnType<typeof createDb>
|