From 008978aef346a9b359fd6f3bf965702e7cd20758 Mon Sep 17 00:00:00 2001 From: Kim Bauters Date: Wed, 26 Jun 2024 14:38:57 +0100 Subject: [PATCH] allow dry-run status to be determined on an FcmClient --- 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 2b336b56c..45e22a731 100644 --- a/src/client/mod.rs +++ b/src/client/mod.rs @@ -101,7 +101,7 @@ impl FcmClientBuilder { pub struct FcmClient { http_client: reqwest::Client, oauth_client: OauthClient, - dry_run: bool, + pub dry_run: bool, } impl FcmClient {