diff options
Diffstat (limited to 'examples/echo_server.ts')
-rw-r--r-- | examples/echo_server.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/echo_server.ts b/examples/echo_server.ts index 5776e77ef..95b9f7413 100644 --- a/examples/echo_server.ts +++ b/examples/echo_server.ts @@ -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"; |