summaryrefslogtreecommitdiff
path: root/cli/main.rs
diff options
context:
space:
mode:
authorBert Belder <bertbelder@gmail.com>2020-08-26 00:22:15 +0200
committerGitHub <noreply@github.com>2020-08-26 00:22:15 +0200
commit9bfb0df805719cb3f022a5b5d9f9d898ae954c2e (patch)
tree6c7d62d95fcbde54ebbe1035bdc74618c63cfbc0 /cli/main.rs
parentd0ccab7fb7dd80030d3765ca9a9af44de6ecda5a (diff)
refactor: remove OpError, use ErrBox everywhere (#7187)
Co-authored-by: Bartek IwaƄczuk <biwanczuk@gmail.com>
Diffstat (limited to 'cli/main.rs')
-rw-r--r--cli/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/main.rs b/cli/main.rs
index 7cf698d5a..b19465713 100644
--- a/cli/main.rs
+++ b/cli/main.rs
@@ -29,6 +29,7 @@ pub mod deno_dir;
pub mod diagnostics;
mod diff;
mod disk_cache;
+pub mod errors;
mod file_fetcher;
pub mod flags;
mod flags_allow_net;
@@ -48,7 +49,6 @@ mod lockfile;
mod metrics;
mod module_graph;
pub mod msg;
-pub mod op_error;
mod op_fetch_asset;
pub mod ops;
pub mod permissions;