summaryrefslogtreecommitdiff
path: root/libpod/adapter/images_remote.go
blob: 77b0629a709f68d1c5bcddd87ae5a4acafa5abbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// +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
}