From 6e419ada5319d728a476ee8434ca9228481b41a8 Mon Sep 17 00:00:00 2001 From: Chris Smith Date: Thu, 18 Apr 2024 15:59:28 -0400 Subject: [PATCH] chore: add Debug --- src/client/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/mod.rs b/src/client/mod.rs index 6938f91af..9f4816597 100644 --- a/src/client/mod.rs +++ b/src/client/mod.rs @@ -9,7 +9,7 @@ use reqwest::{Client as HttpClient, StatusCode}; use serde::Serialize; use std::sync::Arc; -#[derive(Clone)] +#[derive(Debug, Clone)] /// An async client for sending the notification payload. pub struct Client { http_client: HttpClient,