diff options
author | Benjamin Swerdlow <Swerdlowbenjamin@gmail.com> | 2024-11-17 04:36:55 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-17 13:36:55 +0100 |
commit | 73411bb98a677727799122ebc397d825bf95b812 (patch) | |
tree | f922197902b4f5f24e63260e7d6abccc0d5e0cf6 /ext | |
parent | 80098bfeabcd2f681f1854c6294ad0fb71c2dd06 (diff) |
chore: Make ext/net/tcp.rs public (#26891)
Diffstat (limited to 'ext')
-rw-r--r-- | ext/net/lib.rs | 2 |
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; |