1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

chore: fix benchmarks (#18863)

This commit is contained in:
David Sherret 2023-04-26 15:09:28 -04:00 committed by GitHub
parent 77e25a656e
commit c2f5c09692
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -22,4 +22,4 @@ function handler(request) {
return response; return response;
} }
serve(handler, { port: parseInt(port), hostname: "0.0.0.0" }); serve({ port: parseInt(port), hostname: "0.0.0.0" }, handler);