Skip to main content

Mountain/Binary/IPC/HealthCommand/
cocoon_debug_service_health.rs

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