diff --git a/src/app/api/swarm/archetypes/route.ts b/src/app/api/swarm/archetypes/route.ts deleted file mode 100644 index a08fbf1..0000000 --- a/src/app/api/swarm/archetypes/route.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { NextResponse } from 'next/server'; -import { getArchetypes } from '@/lib/server/beads-fs'; - -export async function GET() { - const data = await getArchetypes(); - return NextResponse.json(data); -}