(l baker.Record, next func(baker.Record))
| 17 | func newPassThrough(icfg baker.FilterParams) (baker.Filter, error) { return &passThrough{}, nil } |
| 18 | func (f *passThrough) Stats() baker.FilterStats { return baker.FilterStats{} } |
| 19 | func (f *passThrough) Process(l baker.Record, next func(baker.Record)) { next(l) } |
nothing calls this directly
no outgoing calls
no test coverage detected