summaryrefslogtreecommitdiff
path: root/runtime/lib.rs
diff options
context:
space:
mode:
authorLuca Casonato <hello@lcas.dev>2023-05-04 14:36:38 +0200
committerGitHub <noreply@github.com>2023-05-04 14:36:38 +0200
commit95e209a0e4ef0e4a0b886583057b84ef204261d3 (patch)
treefe7bc059375068e0ec9ab8b7858ac62cb888c177 /runtime/lib.rs
parentb8d0e616eaedb81a759c41d5009921bcc6b0b0bf (diff)
refactor(ext/node): remove NodeEnv trait (#18986)
Diffstat (limited to 'runtime/lib.rs')
-rw-r--r--runtime/lib.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/runtime/lib.rs b/runtime/lib.rs
index 878171913..50822d373 100644
--- a/runtime/lib.rs
+++ b/runtime/lib.rs
@@ -35,8 +35,3 @@ pub mod worker;
mod worker_bootstrap;
pub use worker_bootstrap::BootstrapOptions;
-
-pub struct RuntimeNodeEnv;
-impl deno_node::NodeEnv for RuntimeNodeEnv {
- type P = permissions::PermissionsContainer;
-}