diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-04-24 12:22:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-24 12:22:21 +0200 |
commit | 1f0360c07382dbd86066d1aa8aa4bae34aff18c5 (patch) | |
tree | cc82d00aea829f0b3d3949f40df9696b099ee662 /ext/node/ops/mod.rs | |
parent | 28e2c7204fe02304a8fc3339d7758eec0f64f723 (diff) |
refactor(ext/node): reorganize ops (#18799)
Move all op related code of "ext/node" to "ext/node/ops" module.
These files were unnecessarily scattered around the extension.
Diffstat (limited to 'ext/node/ops/mod.rs')
-rw-r--r-- | ext/node/ops/mod.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ext/node/ops/mod.rs b/ext/node/ops/mod.rs new file mode 100644 index 000000000..6bab57fb8 --- /dev/null +++ b/ext/node/ops/mod.rs @@ -0,0 +1,8 @@ +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. + +pub mod crypto; +pub mod idna; +pub mod require; +pub mod v8; +pub mod winerror; +pub mod zlib; |