github.com/status-im/status-go@v1.1.0/services/subscriptions/filters.go (about) 1 package subscriptions 2 3 type filter interface { 4 getID() string 5 getChanges() ([]interface{}, error) 6 uninstall() error 7 }