mirror of
https://github.com/denoland/deno.git
synced 2025-10-02 23:24:37 +00:00
Change import { x } from "deno"
to const { x } = Deno
(denoland/deno_std#218)
Original: 6063378a92
This commit is contained in:
parent
a7bf191353
commit
2ba7de2d04
32 changed files with 43 additions and 55 deletions
|
@ -1,5 +1,5 @@
|
|||
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
||||
import { listen, copy } from "deno";
|
||||
const { listen, copy } = Deno;
|
||||
|
||||
(async () => {
|
||||
const addr = "0.0.0.0:8080";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue