diff options
author | andy finch <andyfinch7@gmail.com> | 2019-03-19 16:47:35 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-03-19 16:47:35 -0400 |
commit | 6131152a575f86c7510702091ba18f061628674f (patch) | |
tree | 3a885fc3a790a6ae3fca4962ce848ead28a4a174 /cli/ops.rs | |
parent | fb2c0c29ec79434a2ca8354efe8b5e2de8a92558 (diff) |
Remove old Buf definition in cli.rs (#1971)
Diffstat (limited to 'cli/ops.rs')
-rw-r--r-- | cli/ops.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/ops.rs b/cli/ops.rs index 254a21563..862f92560 100644 --- a/cli/ops.rs +++ b/cli/ops.rs @@ -1,7 +1,6 @@ // Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. use atty; use crate::ansi; -use crate::cli::Buf; use crate::cli::Cli; use crate::errors; use crate::errors::{permission_denied, DenoError, DenoResult, ErrorKind}; @@ -21,6 +20,7 @@ use crate::tokio_util; use crate::tokio_write; use crate::version; use deno_core::deno_buf; +use deno_core::Buf; use deno_core::JSError; use deno_core::Op; use flatbuffers::FlatBufferBuilder; |