1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-27 01:29:14 -05:00

Fix import in http_bench.ts (#217)

This commit is contained in:
Ryan Dahl 2019-02-24 16:53:13 -05:00 committed by Bert Belder
parent e609f0c7cb
commit d441a7dbf0

View file

@ -1,6 +1,6 @@
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import * as deno from "deno";
import { serve } from "./mod.ts";
import { serve } from "./server.ts";
const addr = deno.args[1] || "127.0.0.1:4500";
const server = serve(addr);