(ctx context.Context, id string, opts ...NewContainerOpts)
| 65 | } |
| 66 | |
| 67 | func (s *sandboxClient) NewContainer(ctx context.Context, id string, opts ...NewContainerOpts) (Container, error) { |
| 68 | return s.client.NewContainer(ctx, id, append(opts, WithSandbox(s.ID()))...) |
| 69 | } |
| 70 | |
| 71 | func (s *sandboxClient) Labels(ctx context.Context) (map[string]string, error) { |
| 72 | sandbox, err := s.client.SandboxStore().Get(ctx, s.ID()) |
nothing calls this directly
no test coverage detected