(ctx context.Context)
| 61 | } |
| 62 | |
| 63 | func (r *ImageService) Close(ctx context.Context) error { |
| 64 | if r == nil { |
| 65 | return nil |
| 66 | } |
| 67 | return r.imageService.Close(ctx) |
| 68 | } |
| 69 | |
| 70 | func (r *ImageService) ListImages(filter *runtimeapi.ImageFilter, _ ...grpc.CallOption) ([]*runtimeapi.Image, error) { |
| 71 | return r.imageService.ListImages(context.Background(), filter) |