//! Shared wire types — referenced by both the WASM client and the native
//! server. Keep this minimal: pure data, derives, no logic, no framework
//! deps beyond serde.
useserde::{Deserialize, Serialize};#[derive(Clone, Debug, PartialEq, Eq, Serialize, Deserialize)]pubstructStatus{pubmessage: String,
pubversion: String,
pubgreeting:Option<String>,
}