UNPKG

scai

Version:

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

10 lines (9 loc) 428 B
import { getDbForRepo } from '../client.js'; import { markFileAsSkippedTemplate } from '../sqlTemplates.js'; export async function extractFromJava(filePath, _content, fileId) { console.warn(`⛔️ Java 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; }