Files
k3s/vendor/github.com/docker/docker/client/interface_stable.go
Darren Shepherd fa08d6076c Update vendor
2019-01-11 21:58:27 -07:00

11 lines
298 B
Go

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{}