| 223 | var _ = (Task)(&task{}) |
| 224 | |
| 225 | type task struct { |
| 226 | client *Client |
| 227 | c Container |
| 228 | |
| 229 | io cio.IO |
| 230 | id string |
| 231 | pid uint32 |
| 232 | } |
| 233 | |
| 234 | // Spec returns the current OCI specification for the task |
| 235 | func (t *task) Spec(ctx context.Context) (*oci.Spec, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected