osbuild: name in containers input is not optional

Remove the `omitempty` from the name field in the containers input.  It is
required.
This commit is contained in:
Achilleas Koutsou 2023-03-14 23:30:51 +01:00
parent 7edbaf6b43
commit ad2a5bff7c

View file

@ -9,7 +9,7 @@ type ContainersInputReferences interface {
}
type ContainersInputSourceRef struct {
Name string `json:"name,omitempty"`
Name string `json:"name"`
}
type ContainersInputSourceMap map[string]ContainersInputSourceRef