Remove omitempty from CommitDiffStats (#1112)

This commit is contained in:
Darko Draskovic 2024-03-08 13:02:52 +00:00 committed by Harness
parent 18ba322dbe
commit d0a087aa90

View File

@ -57,9 +57,9 @@ type TagFilter struct {
} }
type CommitDiffStats struct { type CommitDiffStats struct {
Total int `json:"total,omitempty"` Total int `json:"total"`
Additions int `json:"additions,omitempty"` Additions int `json:"additions"`
Deletions int `json:"deletions,omitempty"` Deletions int `json:"deletions"`
} }
type Commit struct { type Commit struct {