diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-03-04 20:39:48 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-05 00:39:48 +0000 |
commit | 7afa3aceb04e6b2c8820b7326d6f648db6b571c6 (patch) | |
tree | 951ff96a156dee83cd4fd7615e3b422ca0cda448 /runtime/lib.rs | |
parent | 4894e500cf8c60c2971d186d6a21b994bf36e7d1 (diff) |
refactor(runtime): factor out deno_io extension crate (#18001)
This is a prerequisite to factor out FS ops to a separate crate.
Diffstat (limited to 'runtime/lib.rs')
-rw-r--r-- | runtime/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/lib.rs b/runtime/lib.rs index 26e8d9bb4..6bb84698d 100644 --- a/runtime/lib.rs +++ b/runtime/lib.rs @@ -9,6 +9,7 @@ pub use deno_fetch; pub use deno_ffi; pub use deno_flash; pub use deno_http; +pub use deno_io; pub use deno_napi; pub use deno_net; pub use deno_node; |