From bff7a47e919efb167a22250490179a06b0b748cb Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Mon, 13 Oct 2025 11:42:35 +0200 Subject: [PATCH] Add response for '/202' route with status 202 --- bun/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/bun/index.ts b/bun/index.ts index 7c145d2..9029d29 100644 --- a/bun/index.ts +++ b/bun/index.ts @@ -8,6 +8,7 @@ Bun.serve({ if (url.pathname === "/about") return new Response("About!"); if (url.pathname === "/x") return new Response("a"); if (url.pathname === "/201") return new Response("201", { status: 201 }); + if (url.pathname === "/202") return new Response("202", { status: 202 }); return new Response("404!"); }, })