uncheckedCollector wraps a Collector but its Describe method yields no Desc.
| 25 | |
| 26 | // uncheckedCollector wraps a Collector but its Describe method yields no Desc. |
| 27 | type uncheckedCollector struct { |
| 28 | c Collector |
| 29 | } |
| 30 | |
| 31 | func (u uncheckedCollector) Describe(_ chan<- *Desc) {} |
| 32 | func (u uncheckedCollector) Collect(c chan<- Metric) { |
nothing calls this directly
no outgoing calls
no test coverage detected