Mountain/RPC/Debug.rs
1
2//! Debug-Adapter-Protocol RPC service. Placeholder for the Cocoon DAP
3//! roadmap. Status: not yet wired; all exports are cfg-gated behind the
4//! `debug-protocol` feature.
5
6#[cfg(feature = "debug-protocol")]
7pub struct Struct;
8
9#[cfg(feature = "debug-protocol")]
10impl Struct {
11 pub fn new() -> Self { Struct }
12}
13
14#[cfg(feature = "debug-protocol")]
15impl Default for Struct {
16 fn default() -> Self { Self::new() }
17}