diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-03-30 19:30:40 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-30 19:30:40 -0400 |
commit | e9910d8ae510fcef54ae2f0a83199daa81c15df1 (patch) | |
tree | c92661bb090f2b249508d3b374ed55e516b3f520 /cli/startup_data.rs | |
parent | 6744bb8d750b9ab11d2ec9448334732b98feb58a (diff) |
Rename crate deno_core to deno (#2022)
Diffstat (limited to 'cli/startup_data.rs')
-rw-r--r-- | cli/startup_data.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/startup_data.rs b/cli/startup_data.rs index 747e8b11d..7f59c0678 100644 --- a/cli/startup_data.rs +++ b/cli/startup_data.rs @@ -1,6 +1,6 @@ // Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. -use deno_core::deno_buf; -use deno_core::{Script, StartupData}; +use deno::deno_buf; +use deno::{Script, StartupData}; pub fn deno_isolate_init() -> StartupData { if cfg!(feature = "no-snapshot-init") { |