1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-24 08:09:08 -05:00

Fix import in http_bench.ts (denoland/deno_std#217)

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

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);