(ctx context.Context)
| 69 | } |
| 70 | |
| 71 | func (s *sandboxClient) Labels(ctx context.Context) (map[string]string, error) { |
| 72 | sandbox, err := s.client.SandboxStore().Get(ctx, s.ID()) |
| 73 | if err != nil { |
| 74 | return nil, err |
| 75 | } |
| 76 | |
| 77 | return sandbox.Labels, nil |
| 78 | } |
| 79 | |
| 80 | func (s *sandboxClient) Start(ctx context.Context) error { |
| 81 | _, err := s.client.SandboxController(s.metadata.Sandboxer).Start(ctx, s.ID()) |
nothing calls this directly
no test coverage detected