diff options
author | Satya Rohith <me@satyarohith.com> | 2024-06-18 16:16:13 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-18 10:46:13 +0000 |
commit | 8c4b33db0d05181a0e5538bddaf063144724c938 (patch) | |
tree | 368ced63a6ac484db822212d9d332d92bd3466ed /ext/node/ops/mod.rs | |
parent | 4b83ce8acabaf868d47bf764fce18ce5450fd314 (diff) |
feat(ext/node): add BlockList & SocketAddress classes (#24229)
Closes https://github.com/denoland/deno/issues/24059
Diffstat (limited to 'ext/node/ops/mod.rs')
-rw-r--r-- | ext/node/ops/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/node/ops/mod.rs b/ext/node/ops/mod.rs index ae703e3f3..b51e23ac8 100644 --- a/ext/node/ops/mod.rs +++ b/ext/node/ops/mod.rs @@ -1,5 +1,6 @@ // Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. +pub mod blocklist; pub mod buffer; pub mod crypto; pub mod fs; |