1//! Tauri command - debug-adapter-protocol service health probe. Stub 2//! returns `false`; pending DAP wire-up. 3 4#[tauri::command] 5pub async fn cocoon_debug_service_health() -> Result<bool, String> { Ok(false) }