1 2 3 4 5 6 7 8 9 10
#![allow(missing_docs)] use serde::{Deserialize, Serialize}; // --------------------------------------------- // /ping // --------------------------------------------- #[derive(Serialize, Deserialize, Debug, Clone)] pub struct SimplePing { pub gecko_says: String, }