1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-26 16:09:27 -05:00

Relative import for http_bench.ts

Original: 958dadc875
This commit is contained in:
Ryan Dahl 2018-12-06 17:21:55 -05:00
parent 16aedf68ea
commit 2516281306

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