Skip to content

Commit

Permalink
models: Add missing pub to struct ListCheckRuns πŸ˜… (#347)
Browse files Browse the repository at this point in the history
Co-authored-by: MarcoFalke <*~=`'#}+{/-|&$^[email protected]>
  • Loading branch information
maflcko and MarcoFalke authored Apr 19, 2023
1 parent 18676ad commit 3f702b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/models/checks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ pub struct CheckRun {
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[non_exhaustive]
pub struct ListCheckRuns {
total_count: u64,
check_runs: Vec<CheckRun>,
pub total_count: u64,
pub check_runs: Vec<CheckRun>,
}

0 comments on commit 3f702b5

Please sign in to comment.