summaryrefslogtreecommitdiff
path: root/ws/mod.ts
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-02-02 18:57:38 -0500
committerGitHub <noreply@github.com>2019-02-02 18:57:38 -0500
commit132650cdf366e676c0ffec0cc68792c45149aacd (patch)
tree9508162e85b36a6e904b24956a63d6ac477a98f0 /ws/mod.ts
parentb400dad9b7da542799f504c5146efb33e796c250 (diff)
Rename http/http.ts to http/server.ts (denoland/deno_std#170)
Remove http/mod.ts Original: https://github.com/denoland/deno_std/commit/e79cb5a31ab3d7667f2253824bf89cecc23ab231
Diffstat (limited to 'ws/mod.ts')
-rw-r--r--ws/mod.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/ws/mod.ts b/ws/mod.ts
index 348f5df12..ca47bf5b8 100644
--- a/ws/mod.ts
+++ b/ws/mod.ts
@@ -1,6 +1,6 @@
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import { Buffer, Writer, Conn } from "deno";
-import { ServerRequest } from "../http/http.ts";
+import { ServerRequest } from "../http/server.ts";
import { BufReader, BufWriter } from "../io/bufio.ts";
import { readLong, readShort, sliceLongToBytes } from "../io/ioutil.ts";
import { Sha1 } from "./sha1.ts";