Add bd exec bridge and mutation API routes with tests

This commit is contained in:
zenchantlive 2026-02-11 19:46:02 -08:00
parent 0e3815ac3c
commit 2c80265258
15 changed files with 904 additions and 5 deletions

View file

@ -0,0 +1,5 @@
import { handleMutationRequest } from '../_shared';
export async function POST(request: Request): Promise<Response> {
return handleMutationRequest(request, 'create');
}