add status endpoint to config and update proxy to return them

This commit is contained in:
2025-10-26 01:16:50 -06:00
parent 260decc9af
commit 61f3a4e623
2 changed files with 7 additions and 2 deletions
+1
View File
@@ -3,6 +3,7 @@ use serde::{Deserialize, Serialize};
#[derive(Debug, Clone, Deserialize, Serialize, Default)]
pub struct ClientConfig {
pub proxy_url: Option<String>,
pub status_url: Option<String>,
pub cert_hash: Option<Vec<u8>>,
}