summaryrefslogtreecommitdiff
path: root/cli/bench/http/deno_http_ops.js
diff options
context:
space:
mode:
Diffstat (limited to 'cli/bench/http/deno_http_ops.js')
-rw-r--r--cli/bench/http/deno_http_ops.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/cli/bench/http/deno_http_ops.js b/cli/bench/http/deno_http_ops.js
index f65b32170..3fd0bef31 100644
--- a/cli/bench/http/deno_http_ops.js
+++ b/cli/bench/http/deno_http_ops.js
@@ -1,3 +1,5 @@
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+
const addr = Deno.args[0] || "127.0.0.1:4500";
const [hostname, port] = addr.split(":");
const tcp = Deno.listen({ hostname, port: Number(port) });