2016-09-06 18:46:37 +00:00
|
|
|
package client
|
|
|
|
|
|
|
|
// APIClient is an interface that clients that talk with a docker server must implement.
|
|
|
|
type APIClient interface {
|
|
|
|
CommonAPIClient
|
2016-10-06 14:09:54 +00:00
|
|
|
apiClientExperimental
|
2016-09-06 18:46:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure that Client always implements APIClient.
|
|
|
|
var _ APIClient = &Client{}
|