Import docker/docker/client
Signed-off-by: Daniel Nephin <dnephin@gmail.com>
This commit is contained in:
10
client/interface_stable.go
Normal file
10
client/interface_stable.go
Normal file
@ -0,0 +1,10 @@
|
||||
package 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{}
|
||||
Reference in New Issue
Block a user