Files

9 lines
211 B
Go

// Copyright (C) 2019-2025, Lux Industries Inc. All rights reserved.
// See the file LICENSE for licensing terms.
package pubsub
type Filterer interface {
Filter(connections []Filter) ([]bool, interface{})
}