Skip to main content

Mountain/Binary/IPC/HealthCommand/
cocoon_search_service_health.rs

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