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/main.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/main.rs')
-rw-r--r-- | cli/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/main.rs b/cli/main.rs index 18b0fe827..6c5a78e61 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -3,6 +3,7 @@ mod args; mod auth_tokens; mod cache; +mod cdp; mod deno_std; mod emit; mod errors; |