diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2019-10-21 20:38:28 +0200 |
---|---|---|
committer | Ry Dahl <ry@tinyclouds.org> | 2019-10-21 14:38:28 -0400 |
commit | 6c5a981fd2afad21af73a1345c4e30fb6b30b09a (patch) | |
tree | c6065fe502cc99f29d7f5554257729552920f7f4 /cli/js/deno.ts | |
parent | 1f52c66ced9bed0cae6bff065dfa7563cbfaee29 (diff) |
feat: Deno.listenTLS (#3152)
Diffstat (limited to 'cli/js/deno.ts')
-rw-r--r-- | cli/js/deno.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/js/deno.ts b/cli/js/deno.ts index 511e4f0ec..4b0e3ff96 100644 --- a/cli/js/deno.ts +++ b/cli/js/deno.ts @@ -75,7 +75,7 @@ export { export { truncateSync, truncate } from "./truncate.ts"; export { FileInfo } from "./file_info.ts"; export { connect, dial, listen, Listener, Conn } from "./net.ts"; -export { dialTLS } from "./tls.ts"; +export { dialTLS, listenTLS } from "./tls.ts"; export { metrics, Metrics } from "./metrics.ts"; export { resources } from "./resources.ts"; export { |