From cac2b909c8471e305dd42985fb6f58e7232f4ee1 Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Tue, 25 Mar 2025 22:33:22 +0100 Subject: [PATCH] Update index.ts --- bun/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/bun/index.ts b/bun/index.ts index 4bb6bab..f8be7d9 100644 --- a/bun/index.ts +++ b/bun/index.ts @@ -7,6 +7,7 @@ Bun.serve({ if (url.pathname === "/blog") return new Response("Blog!"); if (url.pathname === "/about") return new Response("About!"); if (url.pathname === "/x") return new Response("a"); + if (url.pathname === "/201") return new Response("201"); return new Response("404!"); }, })