debugger/dap/
mod.rs

1//! Debug Adapter Protocol (DAP) implementation
2//!
3//! This module implements the client side of DAP for communicating
4//! with debug adapters like lldb-dap.
5
6pub mod client;
7pub mod codec;
8pub mod types;
9
10pub use client::DapClient;
11pub use types::*;