Add errors listing to libpod
Signed-off-by: Matthew Heon <mheon@redhat.com>
This commit is contained in:
parent
f8e48aad29
commit
ae5634f8dd
6 changed files with 105 additions and 60 deletions
|
@ -353,10 +353,10 @@ func (r *Runtime) GetImageRef(image string) (types.Image, error) {
|
|||
// output. Multiple filters are handled by ANDing their output, so only images
|
||||
// matching all filters are included
|
||||
func (r *Runtime) GetImages(filter ...ImageFilter) ([]*storage.Image, error) {
|
||||
return nil, errNotImplemented
|
||||
return nil, ErrNotImplemented
|
||||
}
|
||||
|
||||
// ImportImage imports an OCI format image archive into storage as an image
|
||||
func (r *Runtime) ImportImage(path string) (*storage.Image, error) {
|
||||
return nil, errNotImplemented
|
||||
return nil, ErrNotImplemented
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue