mirror of
https://github.com/lifegpc/eh-downloader.git
synced 2026-07-08 01:31:00 +08:00
Add support for both wasm/ffi version of sqlite3
This commit is contained in:
7
utils/db_wasm.ts
Normal file
7
utils/db_wasm.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
import { DB, SqliteOptions } from "sqlite/mod.ts";
|
||||
|
||||
export class DbWasm extends DB {
|
||||
constructor(dbPath: string, options?: SqliteOptions) {
|
||||
super(dbPath, options);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user