summaryrefslogtreecommitdiff
path: root/runtime/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/lib.rs')
-rw-r--r--runtime/lib.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/runtime/lib.rs b/runtime/lib.rs
index 02d52cd5a..57108aa7e 100644
--- a/runtime/lib.rs
+++ b/runtime/lib.rs
@@ -36,3 +36,8 @@ pub mod worker;
mod worker_bootstrap;
pub use worker_bootstrap::BootstrapOptions;
+
+pub struct RuntimeNodeEnv;
+impl deno_node::NodeEnv for RuntimeNodeEnv {
+ type P = permissions::PermissionsContainer;
+}