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.
56pub mod client;
7pub mod codec;
8pub mod types;
910pub use client::DapClient;
11pub use types::*;