scanMemories method
Scan all memory files in the directory.
Implementation
Future<List<MemoryHeader>> scanMemories() async {
await initialize();
final memPath = getAutoMemPath(projectRoot: projectRoot);
return scanMemoryFiles(memPath);
}
Scan all memory files in the directory.
Future<List<MemoryHeader>> scanMemories() async {
await initialize();
final memPath = getAutoMemPath(projectRoot: projectRoot);
return scanMemoryFiles(memPath);
}