This moves the engine-api client package to `/docker/docker/client`. Signed-off-by: Michael Crosby <crosbymichael@gmail.com> Upstream-commit: 7c36a1af031b510cd990cf488ee5998a3efb450f Component: engine
12 lines
256 B
Go
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{}
|