diff options
Diffstat (limited to 'helix-dap/src/lib.rs')
-rw-r--r-- | helix-dap/src/lib.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/helix-dap/src/lib.rs b/helix-dap/src/lib.rs index 87eea8e4..04d9ba8b 100644 --- a/helix-dap/src/lib.rs +++ b/helix-dap/src/lib.rs @@ -1,8 +1,10 @@ mod client; mod transport; +mod types; -pub use client::{Breakpoint, Client, OutputEventBody, SourceBreakpoint, StoppedEventBody}; +pub use client::Client; pub use transport::{Event, Payload, Request, Response, Transport}; +pub use types::*; use thiserror::Error; #[derive(Error, Debug)] |