1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-24 15:19:26 -05:00
denoland-deno/ext/node/ops/mod.rs
snek 700f54a13c
fix(ext/node): better inspector support (#26471)
implement local inspector

future changes:
- wire up InspectorServer to enable open/close/url
- wire up connectToMainThread

Fixes https://github.com/denoland/deno/issues/25004
2024-11-06 14:08:26 +00:00

21 lines
367 B
Rust

// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
pub mod blocklist;
pub mod buffer;
pub mod crypto;
pub mod fs;
pub mod http;
pub mod http2;
pub mod idna;
pub mod inspector;
pub mod ipc;
pub mod os;
pub mod process;
pub mod require;
pub mod tls;
pub mod util;
pub mod v8;
pub mod vm;
pub mod winerror;
pub mod worker_threads;
pub mod zlib;