(args []string)
| 43 | } |
| 44 | |
| 45 | func (r *engineResolver) Build(args []string) (*image.Image, error) { |
| 46 | id, err := buildImageFromCli(args) |
| 47 | if err != nil { |
| 48 | return nil, err |
| 49 | } |
| 50 | return r.Fetch(id) |
| 51 | } |
| 52 | |
| 53 | func (r *engineResolver) Extract(id string, l string, p string) error { |
| 54 | reader, err := r.fetchArchive(id) |
nothing calls this directly
no test coverage detected