import type { CodeStructure } from "@codeboard/shared"; import { analyzeRepository } from "@codeboard/parser"; export async function parseRepository( localPath: string ): Promise { return analyzeRepository(localPath); }