call function on save

This commit is contained in:
Dmitry Shibanov 2021-09-14 18:14:33 +03:00
parent 0727fdd07d
commit b44d7a8d91
2 changed files with 3 additions and 0 deletions

View file

@ -46565,6 +46565,7 @@ function cacheSave() {
});
}
exports.cacheSave = cacheSave;
cacheSave();
/***/ }),

View file

@ -8,3 +8,5 @@ export async function cacheSave() {
cacheManager.saveCache();
}
}
cacheSave();