summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2019-01-14 10:55:23 +1000
committerRyan Dahl <ry@tinyclouds.org>2019-01-13 19:55:23 -0500
commit4a7945098807172efc71f319001e6245079c0f14 (patch)
tree9789c20b648858646e3b9616892493007cd6b7dd
parent429fcbf77a850df7067cf91a879c2d0bac5836df (diff)
Improve re-exports in http (denoland/deno_std#111)
Original: https://github.com/denoland/deno_std/commit/b99d7d3e0f61216db7b5a5ad2bc254f8ac97ff4d
-rw-r--r--http/mod.ts3
1 files changed, 1 insertions, 2 deletions
diff --git a/http/mod.ts b/http/mod.ts
index 217bd68b3..a89f04417 100644
--- a/http/mod.ts
+++ b/http/mod.ts
@@ -1,8 +1,7 @@
-import {
+export {
serve,
listenAndServe,
Response,
setContentLength,
ServerRequest
} from "./http.ts";
-export { serve, listenAndServe, Response, setContentLength, ServerRequest };