import type { Database as DBType } from 'better-sqlite3'; interface ScanStats { modules: number; symbols: number; } export function scanPython(db: DBType, root: string): ScanStats { // Python 扫描器骨架:P1 后期用 tree-sitter-python 实现 return { modules: 0, symbols: 0 }; }