011 http routing

✓ Passing This code compiles and runs correctly.

Code

input.kz

Actual

GET /users/42 -> 200: 42
GET /health -> 200: ok
POST /users -> 201: created
DELETE /users/1 -> 404: not found

Expected output

GET /users/42 -> 200: 42
GET /health -> 200: ok
POST /users -> 201: created
DELETE /users/1 -> 404: not found

Flows

flow ~handle click a branch to expand · @labels scroll to their anchor
handle (method: "GET", path: "/users/42")
flow ~handle click a branch to expand · @labels scroll to their anchor
handle (method: "GET", path: "/health")
flow ~handle click a branch to expand · @labels scroll to their anchor
handle (method: "POST", path: "/users")
flow ~handle click a branch to expand · @labels scroll to their anchor
handle (method: "DELETE", path: "/users/1")

Test Configuration

MUST_RUN