fix(tauri): @reserved annotations for 16 unconnected commands

Complete Tauri command audit: 177 total (160 @connected + 16 @reserved + 1 unregistered identity_init)
Corrected zclaw_doctor from @connected to @reserved
This commit is contained in:
iven
2026-04-05 01:06:58 +08:00
parent 82842c4258
commit fb0b8d2af3
12 changed files with 16 additions and 16 deletions

View File

@@ -266,8 +266,8 @@ pub fn zclaw_health_check(
})
}
/// @reserved — no frontend UI yet
/// Quick ping to check if ZCLAW is alive (lightweight check)
// @reserved: 暂无前端集成
#[tauri::command]
pub fn zclaw_ping(app: AppHandle) -> Result<bool, String> {
let port_check = check_port_accessibility("127.0.0.1", ZCLAW_DEFAULT_PORT, 1000);