scai
Version:
> **AI-powered CLI for local code analysis, commit message suggestions, and natural-language queries.** 100% local, private, GDPR-friendly, made in Denmark/EU with ❤️.
10 lines (9 loc) • 426 B
JavaScript
import { getDbForRepo } from '../client.js';
import { markFileAsSkippedTemplate } from '../sqlTemplates.js';
export async function extractFromXML(filePath, _content, fileId) {
console.warn(`⛔️ XML extraction not implemented: ${filePath}`);
// Mark the file as skipped with the relevant status update
const db = getDbForRepo();
db.prepare(markFileAsSkippedTemplate).run({ id: fileId });
return false;
}