UNPKG

scai

Version:

> AI-powered CLI tool for commit messages **and** pull request reviews — using local models.

10 lines (9 loc) 426 B
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; }