1use plausible_rs::{HealthResponse, Plausible}; 2 3#[tokio::main] 4async fn main() { 5 let response: HealthResponse = Plausible::new().health().await.unwrap(); 6 println!("{}", serde_json::to_string(&response).unwrap()); 7}