mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-15 20:17:22 +00:00
7 lines
210 B
TypeScript
7 lines
210 B
TypeScript
import type { Connection } from "bknd/data";
|
|
import { nodeSqlite } from "../node/connection/NodeSqliteConnection";
|
|
|
|
export function sqlite(config: { url: string }): Connection {
|
|
return nodeSqlite(config);
|
|
}
|