summaryrefslogtreecommitdiff
path: root/cli/cli_behavior.rs
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-03-30 19:30:40 -0400
committerGitHub <noreply@github.com>2019-03-30 19:30:40 -0400
commite9910d8ae510fcef54ae2f0a83199daa81c15df1 (patch)
treec92661bb090f2b249508d3b374ed55e516b3f520 /cli/cli_behavior.rs
parent6744bb8d750b9ab11d2ec9448334732b98feb58a (diff)
Rename crate deno_core to deno (#2022)
Diffstat (limited to 'cli/cli_behavior.rs')
-rw-r--r--cli/cli_behavior.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/cli/cli_behavior.rs b/cli/cli_behavior.rs
index c077d1ad1..05f2cf006 100644
--- a/cli/cli_behavior.rs
+++ b/cli/cli_behavior.rs
@@ -1,13 +1,13 @@
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
use crate::isolate_state::*;
use crate::ops;
-use deno_core::deno_buf;
-use deno_core::Behavior;
-use deno_core::Op;
-use deno_core::StartupData;
+use deno::deno_buf;
+use deno::Behavior;
+use deno::Op;
+use deno::StartupData;
use std::sync::Arc;
-/// Implements deno_core::Behavior for the main Deno command-line.
+/// Implements deno::Behavior for the main Deno command-line.
pub struct CliBehavior {
startup_data: Option<StartupData>,
pub state: Arc<IsolateState>,