feat: support Alibaba & Apache dubbo service

This commit is contained in:
ReaJason
2026-04-26 20:39:53 +08:00
parent 834a7822bd
commit d9733e1512
35 changed files with 1715 additions and 409 deletions
+5 -5
View File
@@ -1,8 +1,8 @@
import { getLLMText, source } from '@/lib/source';
import { getLLMText, source } from "@/lib/source";
export async function loader() {
const scan = source.getPages().map(getLLMText);
const scanned = await Promise.all(scan);
const scan = source.getPages().map(getLLMText);
const scanned = await Promise.all(scan);
return new Response(scanned.join('\n\n'));
}
return new Response(scanned.join("\n\n"));
}