StableBOT / lib /lowdb /adapters /MemorySync.js
RamaZyx's picture
Upload folder using huggingface_hub
a2b2aac verified
class MemorySync {
constructor() {
this.data = null;
}
read() {
return this.data || null;
}
write(obj) {
this.data = obj;
}
}
module.exports = { MemorySync };