diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2019-06-13 01:55:59 +0200 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-06-12 16:55:59 -0700 |
commit | bca5cc5041172e22ad1851c8510d6521bf70ec22 (patch) | |
tree | a772e0619cb6007c603fd1821b130269b3cfeb75 /core/lib.rs | |
parent | b3c4307d02d627287cd28486b208b53c3bd378f0 (diff) |
Move ModuleSpecifier to //core (#2509)
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 10f12815e..88c0fe1d1 100644 --- a/core/lib.rs +++ b/core/lib.rs @@ -8,6 +8,7 @@ mod flags; mod isolate; mod js_errors; mod libdeno; +mod module_specifier; mod modules; mod shared_queue; @@ -16,6 +17,7 @@ pub use crate::isolate::*; pub use crate::js_errors::*; pub use crate::libdeno::deno_mod; pub use crate::libdeno::PinnedBuf; +pub use crate::module_specifier::ModuleSpecifier; pub use crate::modules::*; pub fn v8_version() -> &'static str { |