diff options
Diffstat (limited to 'ws')
| -rw-r--r-- | ws/mod.ts | 2 | ||||
| -rw-r--r-- | ws/test.ts | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -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"; diff --git a/ws/test.ts b/ws/test.ts index 67a194639..252d8775b 100644 --- a/ws/test.ts +++ b/ws/test.ts @@ -3,7 +3,7 @@ import { Buffer } from "deno"; import { BufReader } from "../io/bufio.ts"; import { test, assert, assertEqual } from "../testing/mod.ts"; import { createSecAccept, OpCode, readFrame, unmask } from "./mod.ts"; -import { serve } from "../http/http.ts"; +import { serve } from "../http/server.ts"; test(async function testReadUnmaskedTextFrame() { // unmasked single text frame with payload "Hello" |
