| 37 | } |
| 38 | |
| 39 | type imlClusterService struct { |
| 40 | store cluster.IClusterStore `autowired:""` |
| 41 | nodeStore cluster.IClusterNodeStore `autowired:""` |
| 42 | nodeAddressStore cluster.IClusterNodeAddressStore `autowired:""` |
| 43 | } |
| 44 | |
| 45 | func (s *imlClusterService) GatewayClient(ctx context.Context, id string) (gateway.IClientDriver, error) { |
| 46 | nodes, err := s.Nodes(ctx, id) |
nothing calls this directly
no outgoing calls
no test coverage detected