1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-06-21 23:17:42 +02:00

Made fs functions work again in cli

This commit is contained in:
Laurent Cozic
2017-07-05 22:52:31 +01:00
parent 8adb5a71c5
commit a81fe24368
5 changed files with 48 additions and 5 deletions

View File

@ -0,0 +1,9 @@
class FsDriverDummy {
appendFileSync(path, string) {}
writeBinaryFile(path, content) {}
readFile(path) {}
}
export { FsDriverDummy }