1 2 3 4 5 6 7 8
use serde::{Deserialize, Serialize}; #[derive(Serialize, Deserialize, Debug, Clone)] pub struct Heartbeat { pub pc_id: String, pub at: chrono::DateTime<chrono::Utc>, pub agent_version: String, }