(base ServiceConstructor)
| 93 | type InstrumentedServiceC struct{ InstrumentedService } |
| 94 | |
| 95 | func InstrumentedServiceMakerA(base ServiceConstructor) ServiceConstructor { |
| 96 | return InstrumentingWrapperMaker(base, reflect.TypeOf(InstrumentedServiceA{})) |
| 97 | } |
| 98 | |
| 99 | func InstrumentedServiceMakerB(base ServiceConstructor) ServiceConstructor { |
| 100 | return InstrumentingWrapperMaker(base, reflect.TypeOf(InstrumentedServiceB{})) |
nothing calls this directly
no test coverage detected