Skip to main content

Mountain/Binary/IPC/HealthCommand/
cocoon_search_service_health.rs

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