diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-06-27 16:54:09 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-27 16:54:09 -0400 |
commit | e1c90963fbbf6571ae1b66971b83159681928ec3 (patch) | |
tree | 4bbf86a50776a512e966a9efba3cef044b00152d /cli/standalone.rs | |
parent | 681bb49d0df0865a6564741544869a57aab56bb1 (diff) |
refactor: create `args` folder (#14982)
Diffstat (limited to 'cli/standalone.rs')
-rw-r--r-- | cli/standalone.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/standalone.rs b/cli/standalone.rs index 1e8429db0..d66eb7694 100644 --- a/cli/standalone.rs +++ b/cli/standalone.rs @@ -1,8 +1,8 @@ // Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +use crate::args::Flags; use crate::colors; use crate::file_fetcher::get_source_from_data_url; -use crate::flags::Flags; use crate::fmt_errors::format_js_error; use crate::ops; use crate::proc_state::ProcState; |