| 49 | } |
| 50 | |
| 51 | type multiTaskMonitor struct { |
| 52 | monitors []TaskMonitor |
| 53 | } |
| 54 | |
| 55 | func (mm *multiTaskMonitor) Monitor(task Task, labels map[string]string) error { |
| 56 | for _, m := range mm.monitors { |
nothing calls this directly
no outgoing calls
no test coverage detected