diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2021-12-28 17:40:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-28 17:40:42 +0100 |
commit | ee7ab81768c593e99774b629c82c1784204a1cb0 (patch) | |
tree | c37e58f26df4178ce8bdde3e7a51bdb691852a64 /core/lib.rs | |
parent | 07618c861e27e284cae3a309783ef78dcef611dd (diff) |
refactor(core): cleanup Inspector implementation (#12962)
Diffstat (limited to 'core/lib.rs')
-rw-r--r-- | core/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/lib.rs b/core/lib.rs index 95c5d36cb..606304ad5 100644 --- a/core/lib.rs +++ b/core/lib.rs @@ -45,6 +45,8 @@ pub use crate::async_cell::AsyncRefFuture; pub use crate::async_cell::RcLike; pub use crate::async_cell::RcRef; pub use crate::flags::v8_set_flags; +pub use crate::inspector::InspectorMsg; +pub use crate::inspector::InspectorMsgKind; pub use crate::inspector::InspectorSessionProxy; pub use crate::inspector::JsRuntimeInspector; pub use crate::inspector::LocalInspectorSession; |