Update vendor

This commit is contained in:
Darren Shepherd
2019-01-11 21:58:27 -07:00
parent 62c62cc7b4
commit fa08d6076c
8561 changed files with 1981358 additions and 217 deletions

View File

@@ -0,0 +1,10 @@
package client // import "github.com/docker/docker/client"
// APIClient is an interface that clients that talk with a docker server must implement.
type APIClient interface {
CommonAPIClient
apiClientExperimental
}
// Ensure that Client always implements APIClient.
var _ APIClient = &Client{}