(ctx context.Context)
| 78 | } |
| 79 | |
| 80 | func (s *sandboxClient) Start(ctx context.Context) error { |
| 81 | _, err := s.client.SandboxController(s.metadata.Sandboxer).Start(ctx, s.ID()) |
| 82 | if err != nil { |
| 83 | return err |
| 84 | } |
| 85 | |
| 86 | return nil |
| 87 | } |
| 88 | |
| 89 | func (s *sandboxClient) Wait(ctx context.Context) (<-chan ExitStatus, error) { |
| 90 | c := make(chan ExitStatus, 1) |
nothing calls this directly
no test coverage detected