diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-11-05 23:58:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-05 22:58:59 +0000 |
commit | fdb4953ea460d5c09ac73f3f37dd570d44893155 (patch) | |
tree | 72c0e9dd7dc7b2677eea474d7e443e8a66ba0cc7 /cli/tools/repl/mod.rs | |
parent | 68a964346d1b4f0509d244c7b13e54146817238f (diff) |
refactor: unify CDP types in a single module (#21094)
This commit moves all Chrome Devtools Protocol messages to `cli/cdp.rs`
and refactors all places using these types to pull them from a common
place.
No functional changes.
Diffstat (limited to 'cli/tools/repl/mod.rs')
-rw-r--r-- | cli/tools/repl/mod.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cli/tools/repl/mod.rs b/cli/tools/repl/mod.rs index c25dc00c6..3700911d6 100644 --- a/cli/tools/repl/mod.rs +++ b/cli/tools/repl/mod.rs @@ -14,7 +14,6 @@ use deno_runtime::permissions::PermissionsContainer; use rustyline::error::ReadlineError; use tokio::sync::mpsc::unbounded_channel; -pub(crate) mod cdp; mod channel; mod editor; mod session; |