cleanup of hidden notes

This commit is contained in:
zadam
2022-11-06 15:18:32 +01:00
parent 3122d0cc6b
commit c92b451033
9 changed files with 27 additions and 21 deletions

View File

@@ -0,0 +1,10 @@
module.exports = () => {
const specialNotesService = require('../../src/services/special_notes');
const cls = require("../../src/services/cls");
const beccaLoader = require("../../src/becca/becca_loader");
cls.init(() => {
beccaLoader.load();
specialNotesService.getHiddenRoot();
});
};