1
0
mirror of https://github.com/fluencelabs/tendermint synced 2025-06-20 00:21:21 +00:00
Files
tendermint/libs/pubsub/query/empty.go

15 lines
227 B
Go
Raw Normal View History

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"
}