diff options
author | Dmitry Sharshakov | 2021-08-14 06:14:05 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-08-20 04:43:54 +0000 |
commit | 09390be6a568bcf7052c57bf10219c448413d5b0 (patch) | |
tree | dba12ddc1f7010e62e3729f8c50e5f000bea38d7 /helix-dap/src/lib.rs | |
parent | c72475bc3084f206c3d0c612dd86afe324c6931e (diff) |
dap-basic: handle output events
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 1e545fd8..408f4d3d 100644 --- a/helix-dap/src/lib.rs +++ b/helix-dap/src/lib.rs @@ -1,7 +1,7 @@ mod client; mod transport; -pub use client::{Breakpoint, Client, SourceBreakpoint}; +pub use client::{Breakpoint, Client, OutputEventBody, SourceBreakpoint}; pub use transport::{Event, Payload, Request, Response, Transport}; use thiserror::Error; |