Skip to main content

Mountain/Binary/IPC/HealthCommand/
cocoon_search_service_health.rs

1//! Tauri command - search-service health probe. Returns `true` while
2//! the file system is reachable; the search service treats FS access
3//! as its readiness signal.
4
5#[tauri::command]
6pub async fn cocoon_search_service_health() -> Result<bool, String> { Ok(true) }