diff options
author | Luca Casonato <lucacasonato@yahoo.com> | 2021-03-12 21:23:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-12 21:23:59 +0100 |
commit | 0770449c938cdd0edbadaf1e87e460b21fc1b4ef (patch) | |
tree | 649807f55ed9e03f1d1cd5291295e8d4ff5345da /runtime/lib.rs | |
parent | e83ff62ccbe33ad9c19cb9cab9154b6767d6d74b (diff) |
refactor: move Console to op_crates/console (#9770)
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 140637261..f4cf559d2 100644 --- a/runtime/lib.rs +++ b/runtime/lib.rs @@ -7,6 +7,7 @@ extern crate lazy_static; #[macro_use] extern crate log; +pub use deno_console; pub use deno_crypto; pub use deno_fetch; pub use deno_url; |