mirror of
https://github.com/ajnart/homarr.git
synced 2026-01-30 03:09:19 +01:00
12 lines
221 B
TypeScript
12 lines
221 B
TypeScript
import Database from "better-sqlite3";
|
|
|
|
import { database } from "./driver";
|
|
|
|
export * from "drizzle-orm";
|
|
|
|
export const db = database;
|
|
|
|
export type Database = typeof db;
|
|
|
|
export { createId } from "@paralleldrive/cuid2";
|