claude-recall 0.34.2 → 0.34.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -57,9 +57,11 @@ const HOOKS_VERSION = '14.0.0';
|
|
|
57
57
|
const parse_utils_1 = require("./parse-utils");
|
|
58
58
|
const program = new commander_1.Command();
|
|
59
59
|
class ClaudeRecallCLI {
|
|
60
|
+
get memoryService() {
|
|
61
|
+
return (this._memoryService ?? (this._memoryService = memory_1.MemoryService.getInstance()));
|
|
62
|
+
}
|
|
60
63
|
constructor(options) {
|
|
61
64
|
this.options = options;
|
|
62
|
-
this.memoryService = memory_1.MemoryService.getInstance();
|
|
63
65
|
this.config = config_1.ConfigService.getInstance();
|
|
64
66
|
this.logger = logging_1.LoggingService.getInstance();
|
|
65
67
|
this.patternService = pattern_service_1.PatternService.getInstance();
|
package/package.json
CHANGED