fix: 0 warnings build and rename package to mcp-mt5-quant

This commit is contained in:
Devid HW
2026-04-19 06:11:43 +07:00
parent 2104fabe50
commit 94eb8927fd
4 changed files with 8 additions and 6 deletions
+2
View File
@@ -6,6 +6,7 @@ use crate::{models::Config as ModelsConfig, tools::ToolHandler, McpError, McpReq
/// Auto-verify result stored after first initialization
#[derive(Debug, Clone)]
#[allow(dead_code)]
struct AutoVerifyResult {
all_ok: bool,
hint: String,
@@ -89,6 +90,7 @@ impl McpServer {
}
/// Get current verify status (may be loading if called immediately after init)
#[allow(dead_code)]
async fn get_verify_status(&self) -> (Option<bool>, String) {
let guard = self.auto_verify_result.lock().await;
match guard.as_ref() {