mirror of https://github.com/laurent22/joplin.git
9 lines
137 B
JavaScript
9 lines
137 B
JavaScript
|
class FsDriverDummy {
|
||
|
constructor() {}
|
||
|
appendFileSync() {}
|
||
|
writeBinaryFile() {}
|
||
|
readFile() {}
|
||
|
}
|
||
|
|
||
|
module.exports = { FsDriverDummy };
|