diff options
author | Bert Belder <bertbelder@gmail.com> | 2020-08-26 00:22:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-26 00:22:15 +0200 |
commit | 9bfb0df805719cb3f022a5b5d9f9d898ae954c2e (patch) | |
tree | 6c7d62d95fcbde54ebbe1035bdc74618c63cfbc0 /cli/main.rs | |
parent | d0ccab7fb7dd80030d3765ca9a9af44de6ecda5a (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.rs | 2 |
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; |