| 72 | } |
| 73 | |
| 74 | type blockingComponent struct { |
| 75 | stopStarted chan struct{} |
| 76 | stopRelease chan struct{} |
| 77 | } |
| 78 | |
| 79 | func newBlockingComponent() *blockingComponent { |
| 80 | return &blockingComponent{ |
nothing calls this directly
no outgoing calls
no test coverage detected