(ctx context.Context, key client.ObjectKey, obj client.Object, opts ...client.GetOption)
| 359 | } |
| 360 | |
| 361 | func (c *errClient) Get(ctx context.Context, key client.ObjectKey, obj client.Object, opts ...client.GetOption) error { |
| 362 | return c.cli.Get(ctx, key, obj, opts...) |
| 363 | } |
| 364 | |
| 365 | func (c *errClient) List(ctx context.Context, list client.ObjectList, opts ...client.ListOption) error { |
| 366 | return c.cli.List(ctx, list, opts...) |
no outgoing calls
no test coverage detected