diff --git a/apps/worker/src/jobs/parse.ts b/apps/worker/src/jobs/parse.ts new file mode 100644 index 0000000..fdb67a5 --- /dev/null +++ b/apps/worker/src/jobs/parse.ts @@ -0,0 +1,8 @@ +import type { CodeStructure } from "@codeboard/shared"; +import { analyzeRepository } from "@codeboard/parser"; + +export async function parseRepository( + localPath: string +): Promise { + return analyzeRepository(localPath); +}