Skip to content
This repository was archived by the owner on Dec 10, 2024. It is now read-only.

Commit 556ae46

Browse files
committed
Do not add omitempty on response structs
1 parent 7f507c0 commit 556ae46

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,9 @@ type PackageFile struct {
9595
FileName string `json:"file_name"`
9696
Size int `json:"size"`
9797
FileMD5 string `json:"file_md5"`
98-
FileSHA1 string `json:"file_sha1,omitempty"`
99-
FileSHA256 string `json:"file_sha256,omitempty"`
100-
Pipeline *[]Pipeline `json:"pipelines"`
98+
FileSHA1 string `json:"file_sha1"`
99+
FileSHA256 string `json:"file_sha256"`
100+
Pipeline *[]Pipeline `json:"pipelines"`
101101
}
102102

103103
func (s PackageFile) String() string {

0 commit comments

Comments
 (0)