diff options
Diffstat (limited to 'src/errors.rs')
-rw-r--r-- | src/errors.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/errors.rs b/src/errors.rs index 2fcb26193..1bedf8d40 100644 --- a/src/errors.rs +++ b/src/errors.rs @@ -1,13 +1,11 @@ // Copyright 2018 the Deno authors. All rights reserved. MIT license. use hyper; -use msg_generated::deno as msg; +pub use msg::ErrorKind; use std; use std::fmt; use std::io; use url; -pub use self::msg::ErrorKind; - pub type DenoResult<T> = std::result::Result<T, DenoError>; #[derive(Debug)] |