feat: implement database backup

This commit is contained in:
thecodrr
2020-09-13 13:24:24 +05:00
parent 842e851ee3
commit 06707669dd
5 changed files with 95 additions and 1 deletions

View File

@@ -17,6 +17,9 @@ export default class Storage {
remove(key) {
return this.storage.remove(key);
}
getAllKeys() {
return this.storage.getAllKeys();
}
encrypt(password, data) {
return this.storage.encrypt(password, data);
}