From 70af8128767f2fc5a9c59107d3b5ddc00531db55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Fri, 9 Apr 2021 00:34:15 +0200 Subject: feat: native HTTP bindings (#9935) Co-authered-by: Luca Casonato Co-authered-by: Ben Noordhuis Co-authered-by: Ryan Dahl --- runtime/js/90_deno_ns.js | 2 ++ 1 file changed, 2 insertions(+) (limited to 'runtime/js/90_deno_ns.js') diff --git a/runtime/js/90_deno_ns.js b/runtime/js/90_deno_ns.js index d820d0896..84eb69ef0 100644 --- a/runtime/js/90_deno_ns.js +++ b/runtime/js/90_deno_ns.js @@ -120,6 +120,7 @@ listen: __bootstrap.netUnstable.listen, connect: __bootstrap.netUnstable.connect, listenDatagram: __bootstrap.netUnstable.listenDatagram, + startHttp: __bootstrap.http.startHttp, startTls: __bootstrap.tls.startTls, fstatSync: __bootstrap.fs.fstatSync, fstat: __bootstrap.fs.fstat, @@ -132,5 +133,6 @@ utimeSync: __bootstrap.fs.utimeSync, HttpClient: __bootstrap.fetch.HttpClient, createHttpClient: __bootstrap.fetch.createHttpClient, + http: __bootstrap.http, }; })(this); -- cgit v1.2.3