github.com/filecoin-project/bacalhau@v0.3.23-0.20230228154132-45c989550ace/pkg/model/v1beta1/tag.go (about)

     1  package v1beta1
     2  
     3  // We use these types to make it harder to accidentally mix up passing the wrong
     4  // annotations to the wrong argument, e.g. avoid Excluded = []string{"included"}
     5  type (
     6  	IncludedTag string
     7  	ExcludedTag string
     8  )
     9  
    10  // Set of annotations that will not do any filtering of jobs.
    11  var (
    12  	IncludeAny  []IncludedTag = []IncludedTag{}
    13  	ExcludeNone []ExcludedTag = []ExcludedTag{}
    14  )