mirror of
https://github.com/containers/podman.git
synced 2025-11-13 17:47:13 +08:00
14 lines
521 B
Go
14 lines
521 B
Go
package define
|
|
|
|
const (
|
|
// SearchFilterAutomated is the key for filtering images by their automated attribute.
|
|
SearchFilterAutomated = "is-automated"
|
|
// SearchFilterOfficial is the key for filtering images by their official attribute.
|
|
SearchFilterOfficial = "is-official"
|
|
// SearchFilterStars is the key for filtering images by stars.
|
|
SearchFilterStars = "stars"
|
|
)
|
|
|
|
// SearchFilters includes all supported search filters.
|
|
var SearchFilters = []string{SearchFilterAutomated, SearchFilterOfficial, SearchFilterStars}
|