chore: remove conflicts in preparation for standalone app

This commit is contained in:
Rim
2025-04-01 07:19:14 -04:00
parent 3810daa65d
commit 9b2a71ef44
12 changed files with 10 additions and 968 deletions

View File

@ -110,7 +110,7 @@ module.exports = class SqliteCacheStore {
}
if (!DatabaseSync) {
DatabaseSync = require('node:sqlite').DatabaseSync
const sqlite3 = require('sqlite3').verbose();
}
this.#db = new DatabaseSync(opts?.location ?? ':memory:')
@ -217,11 +217,11 @@ module.exports = class SqliteCacheStore {
)
`)
}
/*
close () {
this.#db.close()
}
*/
/**
* @param {import('../../types/cache-interceptor.d.ts').default.CacheKey} key
* @returns {(import('../../types/cache-interceptor.d.ts').default.GetResult & { body?: Buffer }) | undefined}