11 lines
334 B
TypeScript
11 lines
334 B
TypeScript
import { drizzle } from 'drizzle-orm/postgres-js';
|
|
import postgres from 'postgres';
|
|
import * as schema from './schema';
|
|
|
|
export function createDbClient(connectionString: string) {
|
|
const queryClient = postgres(connectionString);
|
|
return drizzle(queryClient, { schema });
|
|
}
|
|
|
|
export type DbClient = ReturnType<typeof createDbClient>;
|