diff options
author | Blaž Hrastnik | 2021-08-16 04:37:50 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-08-20 04:43:54 +0000 |
commit | 3a9e1c305b1ab080e77a2d6a405710fd1f20015e (patch) | |
tree | 33bb00d81adf051d4a22826b9186f116164bd2e0 /helix-dap/src/lib.rs | |
parent | 2d1ae2e44ba81da8e6c8380e2ab8505672e45ede (diff) |
Refactor types, add a Request trait
Diffstat (limited to 'helix-dap/src/lib.rs')
-rw-r--r-- | helix-dap/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-dap/src/lib.rs b/helix-dap/src/lib.rs index 04d9ba8b..64cc87cc 100644 --- a/helix-dap/src/lib.rs +++ b/helix-dap/src/lib.rs @@ -3,7 +3,7 @@ mod transport; mod types; pub use client::Client; -pub use transport::{Event, Payload, Request, Response, Transport}; +pub use transport::{Event, Payload, Response, Transport}; pub use types::*; use thiserror::Error; |