From 3f702b58ca4d1c2372f177c9d6987adebb9c2c32 Mon Sep 17 00:00:00 2001 From: MacrabFalke <6399679+MarcoFalke@users.noreply.github.com> Date: Wed, 19 Apr 2023 12:15:46 +0200 Subject: [PATCH] =?UTF-8?q?models:=20Add=20missing=20pub=20to=20struct=20L?= =?UTF-8?q?istCheckRuns=20=F0=9F=98=85=20(#347)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> --- src/models/checks.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/models/checks.rs b/src/models/checks.rs index 3f23c947..000f1c30 100644 --- a/src/models/checks.rs +++ b/src/models/checks.rs @@ -11,6 +11,6 @@ pub struct CheckRun { #[derive(Debug, Clone, PartialEq, Serialize, Deserialize)] #[non_exhaustive] pub struct ListCheckRuns { - total_count: u64, - check_runs: Vec, + pub total_count: u64, + pub check_runs: Vec, }