import type { Database as DBType } from 'better-sqlite3'; interface ScanStats { modules: number; symbols: number; } export function scanGo(db: DBType, root: string): ScanStats { // Go 扫描器骨架:P1 后期用 tree-sitter-go 实现 // 当前仅扫描 go.mod 识别模块 return { modules: 0, symbols: 0 }; }