diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-09-09 19:21:22 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-09-09 23:12:22 -0400 |
commit | a4f1b367b9314b1526c51dad593cac1682ef996b (patch) | |
tree | f037cf49914f2d929b4b5f14c52e1ef11f06bd72 /src/errors.rs | |
parent | 3574c7a5d39c6cd55e7c25a10e4e5c8e363b7af9 (diff) |
Remove namespace from src/msg.fbs
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)] |