mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-16 12:37:20 +00:00
7 lines
215 B
TypeScript
7 lines
215 B
TypeScript
import type { Connection } from "bknd/data";
|
|
import { libsql } from "../../data/connection/sqlite/libsql/LibsqlConnection";
|
|
|
|
export function sqlite(config: { url: string }): Connection {
|
|
return libsql(config);
|
|
}
|