1
0
mirror of https://github.com/containers/skopeo.git synced 2025-05-02 13:13:24 +00:00
skopeo/vendor/github.com/docker/engine-api/client/interface_stable.go
Antonio Murdaca 69e08d78ad
Pull in schema1 and docker-daemon
Signed-off-by: Antonio Murdaca <runcom@redhat.com>
2016-10-21 16:48:39 +02:00

12 lines
256 B
Go

// +build !experimental
package client
// APIClient is an interface that clients that talk with a docker server must implement.
type APIClient interface {
CommonAPIClient
}
// Ensure that Client always implements APIClient.
var _ APIClient = &Client{}