fix: correct logger import path in memory.js

This commit is contained in:
admin
2026-05-05 14:44:37 +00:00
Unverified
parent c63a1c03ae
commit a84df42932
2 changed files with 12 additions and 1 deletions

View File

@@ -14,7 +14,7 @@
import fs from 'fs-extra';
import path from 'path';
import { logger } from './logger.js';
import { logger } from '../utils/logger.js';
const MEMORY_DIR = path.join(process.cwd(), 'data');
const MEMORY_FILE = path.join(MEMORY_DIR, 'memory.json');