| 32 | } |
| 33 | |
| 34 | type transportService struct { |
| 35 | c client.Client |
| 36 | name string |
| 37 | } |
| 38 | |
| 39 | func NewTransportService(name string, c client.Client) TransportService { |
| 40 | return &transportService{ |
nothing calls this directly
no outgoing calls
no test coverage detected