Skip to main content

Mountain/Binary/IPC/HealthCommand/
cocoon_debug_service_health.rs

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