diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2019-06-09 15:08:20 +0200 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-06-09 09:08:20 -0400 |
commit | a115340288d974f141cceb16faac71914402c445 (patch) | |
tree | 80353d2579e6d6dc9febd449f1f779ffa62c8397 /cli/main.rs | |
parent | 8ec5276d30dac59ced0ca7e35e07e20644ee2188 (diff) |
feat: Import maps (#2360)
Diffstat (limited to 'cli/main.rs')
-rw-r--r-- | cli/main.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cli/main.rs b/cli/main.rs index ad0374af2..132bd7bc0 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -9,6 +9,7 @@ extern crate futures; extern crate serde_json; extern crate clap; extern crate deno; +extern crate indexmap; #[cfg(unix)] extern crate nix; extern crate rand; @@ -24,6 +25,7 @@ mod fs; mod global_timer; mod http_body; mod http_util; +mod import_map; pub mod js_errors; pub mod msg; pub mod msg_util; |