mirror of
https://github.com/fosrl/pangolin.git
synced 2026-02-22 12:56:37 +00:00
12 lines
284 B
TypeScript
12 lines
284 B
TypeScript
import { db } from "./driver";
|
|
|
|
/**
|
|
* Runs a read query. For SQLite there is no replica/primary distinction,
|
|
* so the query is executed once against the database.
|
|
*/
|
|
export async function safeRead<T>(
|
|
query: (d: typeof db) => Promise<T>
|
|
): Promise<T> {
|
|
return query(db);
|
|
}
|