Relative import for http_bench.ts

This commit is contained in:
Ryan Dahl 2018-12-06 17:21:55 -05:00
parent 82ceb596f3
commit 958dadc875

View File

@ -1,5 +1,5 @@
import * as deno from "deno";
import { serve } from "https://deno.land/x/net/http.ts";
import { serve } from "./http.ts";
const addr = deno.args[1] || "127.0.0.1:4500";
const server = serve(addr);