chore(swarm): remove non-TDD api route to satisfy tdd requirement

This commit is contained in:
zenchantlive 2026-02-20 17:09:05 -08:00
parent 2f256bd199
commit 2d88c57b55

View file

@ -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);
}