renamed also cache files/modules

This commit is contained in:
zadam
2021-04-16 23:01:56 +02:00
parent f7e86c5be0
commit 42510fda5c
80 changed files with 83 additions and 83 deletions

View File

@@ -2,7 +2,7 @@
const Expression = require('./expression');
const NoteSet = require('../note_set');
const becca = require('../../note_cache/note_cache');
const becca = require('../../becca/becca.js');
class BeccaFlatTextExp extends Expression {
constructor(tokens) {
@@ -13,7 +13,7 @@ class BeccaFlatTextExp extends Expression {
execute(inputNoteSet, executionContext) {
// has deps on SQL which breaks unit test so needs to be dynamically required
const beccaService = require('../../note_cache/note_cache_service');
const beccaService = require('../../becca/becca_service.js');
const resultNoteSet = new NoteSet();
function searchDownThePath(note, tokens, path) {