summaryrefslogtreecommitdiff
path: root/runtime/js/40_http.js
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/js/40_http.js')
-rw-r--r--runtime/js/40_http.js18
1 files changed, 0 insertions, 18 deletions
diff --git a/runtime/js/40_http.js b/runtime/js/40_http.js
deleted file mode 100644
index 675d428cd..000000000
--- a/runtime/js/40_http.js
+++ /dev/null
@@ -1,18 +0,0 @@
-// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
-import { core, internals } from "ext:core/mod.js";
-import { op_http_start } from "ext:core/ops";
-const { internalRidSymbol } = core;
-
-import { HttpConn } from "ext:deno_http/01_http.js";
-
-function serveHttp(conn) {
- internals.warnOnDeprecatedApi(
- "Deno.serveHttp()",
- new Error().stack,
- "Use `Deno.serve()` instead.",
- );
- const rid = op_http_start(conn[internalRidSymbol]);
- return new HttpConn(rid, conn.remoteAddr, conn.localAddr);
-}
-
-export { serveHttp };