Files
podman/libpod/adapter/images_remote.go
2019-01-10 13:18:08 -06:00

18 lines
315 B
Go

// +build remoteclient
package adapter
import (
"github.com/containers/libpod/libpod"
)
// Images returns information for the host system and its components
func (r RemoteRuntime) Images() ([]libpod.InfoData, error) {
conn, err := r.Connect()
if err != nil {
return nil, err
}
_ = conn
return nil, nil
}