(filter *runtimeapi.ContainerFilter, _ ...grpc.CallOption)
| 169 | } |
| 170 | |
| 171 | func (r *RuntimeService) ListContainers(filter *runtimeapi.ContainerFilter, _ ...grpc.CallOption) ([]*runtimeapi.Container, error) { |
| 172 | return r.runtimeService.ListContainers(context.Background(), filter) |
| 173 | } |
| 174 | |
| 175 | func (r *RuntimeService) ContainerStatus(containerID string, _ ...grpc.CallOption) (*runtimeapi.ContainerStatus, error) { |
| 176 | resp, err := r.runtimeService.ContainerStatus(context.Background(), containerID, false) |
nothing calls this directly
no test coverage detected