diff options
Diffstat (limited to 'std/http')
-rw-r--r-- | std/http/_io.ts | 1 | ||||
-rw-r--r-- | std/http/_io_test.ts | 1 | ||||
-rw-r--r-- | std/http/_mock_conn.ts | 2 | ||||
-rw-r--r-- | std/http/mod.ts | 1 | ||||
-rw-r--r-- | std/http/racing_server_test.ts | 1 | ||||
-rw-r--r-- | std/http/test.ts | 1 |
6 files changed, 7 insertions, 0 deletions
diff --git a/std/http/_io.ts b/std/http/_io.ts index 743f52556..fefa6f657 100644 --- a/std/http/_io.ts +++ b/std/http/_io.ts @@ -1,3 +1,4 @@ +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. import { BufReader, BufWriter } from "../io/bufio.ts"; import { TextProtoReader } from "../textproto/mod.ts"; import { assert } from "../_util/assert.ts"; diff --git a/std/http/_io_test.ts b/std/http/_io_test.ts index 77d8288f2..7c7b3d8b4 100644 --- a/std/http/_io_test.ts +++ b/std/http/_io_test.ts @@ -1,3 +1,4 @@ +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. import { assertThrowsAsync, assertEquals, diff --git a/std/http/_mock_conn.ts b/std/http/_mock_conn.ts index be07ede24..4ce2b65f4 100644 --- a/std/http/_mock_conn.ts +++ b/std/http/_mock_conn.ts @@ -1,3 +1,5 @@ +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. + /** Create dummy Deno.Conn object with given base properties */ export function mockConn(base: Partial<Deno.Conn> = {}): Deno.Conn { return { diff --git a/std/http/mod.ts b/std/http/mod.ts index 3746242a9..373e01449 100644 --- a/std/http/mod.ts +++ b/std/http/mod.ts @@ -1,3 +1,4 @@ +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. export * from "./cookie.ts"; export * from "./http_status.ts"; export * from "./server.ts"; diff --git a/std/http/racing_server_test.ts b/std/http/racing_server_test.ts index 88ef3ab2f..b8336abcd 100644 --- a/std/http/racing_server_test.ts +++ b/std/http/racing_server_test.ts @@ -1,3 +1,4 @@ +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. import { assert, assertEquals } from "../testing/asserts.ts"; import { BufReader, BufWriter } from "../io/bufio.ts"; import { TextProtoReader } from "../textproto/mod.ts"; diff --git a/std/http/test.ts b/std/http/test.ts index 543491080..57684a50e 100644 --- a/std/http/test.ts +++ b/std/http/test.ts @@ -1 +1,2 @@ +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. import "./mod.ts"; |