mirror of
https://github.com/containers/podman.git
synced 2025-12-09 07:09:03 +08:00
18 lines
315 B
Go
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
|
|
}
|