mirror of
https://github.com/denoland/deno.git
synced 2025-01-12 00:54:02 -05:00
Fix import in http_bench.ts (denoland/deno_std#217)
Original: d441a7dbf0
This commit is contained in:
parent
7484cf88b5
commit
a7bf191353
1 changed files with 1 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
||||||
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
||||||
import * as deno from "deno";
|
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 addr = deno.args[1] || "127.0.0.1:4500";
|
||||||
const server = serve(addr);
|
const server = serve(addr);
|
||||||
|
|
Loading…
Reference in a new issue