projek1 / lib /lowdb /adapters /MemorySync.js
devstok's picture
Upload folder using huggingface_hub
d8a4b7b verified
raw
history blame contribute delete
219 Bytes
class MemorySync {
constructor() {
this.data = null;
}
read() {
return this.data || null;
}
write(obj) {
this.data = obj;
}
}
module.exports = { MemorySync };