spiegel_podman/pkg/domain/entities/reports/containers.go
Toshiki Sonoda 607cd39e15 Removing the RawInput from the API output
Including the RawInput in the API output is meaningless.

Fixes: #16497

[NO NEW TESTS NEEDED]

Signed-off-by: Toshiki Sonoda <sonoda.toshiki@fujitsu.com>
2022-11-17 15:41:01 +09:00

29 lines
554 B
Go

package reports
type RmReport struct {
Id string `json:"Id"` //nolint:revive,stylecheck
Err error `json:"Err,omitempty"`
RawInput string `json:"-"`
}
func RmReportsIds(r []*RmReport) []string {
ids := make([]string, 0, len(r))
for _, v := range r {
if v == nil || v.Id == "" {
continue
}
ids = append(ids, v.Id)
}
return ids
}
func RmReportsErrs(r []*RmReport) []error {
errs := make([]error, 0, len(r))
for _, v := range r {
if v == nil || v.Err == nil {
continue
}
errs = append(errs, v.Err)
}
return errs
}