diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2019-09-30 20:59:44 +0200 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-09-30 14:59:44 -0400 |
commit | ffbf0c20ccc4e70281958f18ed117f40bdd91397 (patch) | |
tree | 602fc442c91186e80a57eca85c5069f4a9be04d3 /core/lib.rs | |
parent | ae26a9c7a22bf3311648a93a3171f087490c6e4d (diff) |
feat: op registration in core (#3002)
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 9be1c3891..42a692f1a 100644 --- a/core/lib.rs +++ b/core/lib.rs @@ -11,6 +11,7 @@ mod js_errors; mod libdeno; mod module_specifier; mod modules; +mod ops; mod shared_queue; pub use crate::any_error::*; @@ -22,6 +23,7 @@ pub use crate::libdeno::OpId; pub use crate::libdeno::PinnedBuf; pub use crate::module_specifier::*; pub use crate::modules::*; +pub use crate::ops::*; pub fn v8_version() -> &'static str { use std::ffi::CStr; |