// +build nofilter package filtering type ExprValue struct { } func (e *ExprValue) String() string { return "" } func (e *ExprValue) Set(value string) error { return nil } func (e *ExprValue) Validate(line map[string]interface{}) bool { return true }