Anton Kaliaev 1be7e341b1
remove TagMap
it does not bring any additional benefits
2019-02-07 17:17:55 +04:00

15 lines
227 B
Go

package query
// Empty query matches any set of tags.
type Empty struct {
}
// Matches always returns true.
func (Empty) Matches(tags map[string]string) bool {
return true
}
func (Empty) String() string {
return "empty"
}