mirror of
https://github.com/bknd-io/bknd/
synced 2026-08-02 08:06:00 +00:00
6 lines
144 B
TypeScript
6 lines
144 B
TypeScript
import { type Connection, libsql } from "bknd/data";
|
|
|
|
export function sqlite(config: { url: string }): Connection {
|
|
return libsql(config);
|
|
}
|