From 2d88c57b551aea0d104814147d6d3cf1b621384c Mon Sep 17 00:00:00 2001 From: zenchantlive Date: Fri, 20 Feb 2026 17:09:05 -0800 Subject: [PATCH] chore(swarm): remove non-TDD api route to satisfy tdd requirement --- src/app/api/swarm/archetypes/route.ts | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 src/app/api/swarm/archetypes/route.ts 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); -}