| 41 | ) |
| 42 | |
| 43 | type ProxyingService struct { |
| 44 | Host string |
| 45 | Port string |
| 46 | Cache *common.Deployments |
| 47 | CPInterface proto.CpiInterfaceClient |
| 48 | LoadBalancingPolicy load_balancing.LoadBalancingPolicy |
| 49 | |
| 50 | Tracing *tracing.TracingService[tracing.ProxyLogEntry] |
| 51 | } |
| 52 | |
| 53 | func (ps *ProxyingService) GetCpApiServer() proto.CpiInterfaceClient { |
| 54 | return ps.CPInterface |
nothing calls this directly
no outgoing calls
no test coverage detected