feat: add repo parse job

This commit is contained in:
2001-01-01 00:00:00 +00:00
parent ed95e45fff
commit b2a7dd2f24

View File

@@ -0,0 +1,8 @@
import type { CodeStructure } from "@codeboard/shared";
import { analyzeRepository } from "@codeboard/parser";
export async function parseRepository(
localPath: string
): Promise<CodeStructure> {
return analyzeRepository(localPath);
}