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