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.
45#[tauri::command]
6pub async fn cocoon_search_service_health() -> Result<bool, String> { Ok(true) }