summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Swerdlow <Swerdlowbenjamin@gmail.com>2024-11-17 04:36:55 -0800
committerGitHub <noreply@github.com>2024-11-17 13:36:55 +0100
commit73411bb98a677727799122ebc397d825bf95b812 (patch)
treef922197902b4f5f24e63260e7d6abccc0d5e0cf6
parent80098bfeabcd2f681f1854c6294ad0fb71c2dd06 (diff)
chore: Make ext/net/tcp.rs public (#26891)
-rw-r--r--ext/net/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/net/lib.rs b/ext/net/lib.rs
index bf8f58aa2..f482750b3 100644
--- a/ext/net/lib.rs
+++ b/ext/net/lib.rs
@@ -7,7 +7,7 @@ pub mod ops_tls;
pub mod ops_unix;
pub mod raw;
pub mod resolve_addr;
-mod tcp;
+pub mod tcp;
use deno_core::error::AnyError;
use deno_core::OpState;