diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-10-04 20:28:51 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-04 20:28:51 -0400 |
commit | b81e5db17aa8b3088d6034ddf86b79c69410f012 (patch) | |
tree | 579e4c23d60d1b0d038156bc28a04f74ea87b2f0 /cli/startup_data.rs | |
parent | 9049213867d30f7df090a83b6baf3e0717a4d2d2 (diff) |
Merge deno_cli_snapshots into deno_cli (#3064)
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 593859be7..7dc2fdb60 100644 --- a/cli/startup_data.rs +++ b/cli/startup_data.rs @@ -2,9 +2,9 @@ #[cfg(feature = "no-snapshot-init")] use deno::Script; +use crate::js::CLI_SNAPSHOT; +use crate::js::COMPILER_SNAPSHOT; use deno::StartupData; -use deno_cli_snapshots::CLI_SNAPSHOT; -use deno_cli_snapshots::COMPILER_SNAPSHOT; #[cfg(feature = "no-snapshot-init")] pub fn deno_isolate_init() -> StartupData<'static> { |