@naturalcycles/db-lib
Version:
Lowest Common Denominator API to supported Databases
15 lines (14 loc) • 358 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.NoopPersistencePlugin = void 0;
class NoopPersistencePlugin {
async ping() { }
async getTables() {
return [];
}
async loadFile(_table) {
return [];
}
async saveFiles(_ops) { }
}
exports.NoopPersistencePlugin = NoopPersistencePlugin;