mirror of
https://github.com/better-auth/better-auth.git
synced 2026-06-03 04:46:19 -05:00
* feat: add cloudflare worker basic tests * chore: fix conflict --------- Co-authored-by: Bereket Engida <bekacru@gmail.com>
5 lines
158 B
TypeScript
5 lines
158 B
TypeScript
import { drizzle } from "drizzle-orm/d1";
|
|
import * as schema from "./auth-schema";
|
|
|
|
export const createDrizzle = (db: D1Database) => drizzle(db, { schema });
|