Copy-paste fix pattern
library CB-Networking.API
fn main() {
string requestMethod = "GET"
string requestPath = "/status"
if (CB-Networking.API.match(requestMethod, requestPath, "GET", "/status")) {
println(CB-Networking.API.ok("ok=true"))
} else {
println(CB-Networking.API.error(404, "not found"))
}
}