github.com/rish1988/moby@v25.0.2+incompatible/client/interface_stable.go (about) 1 package client // import "github.com/docker/docker/client" 2 3 // APIClient is an interface that clients that talk with a docker server must implement. 4 type APIClient interface { 5 CommonAPIClient 6 apiClientExperimental 7 } 8 9 // Ensure that Client always implements APIClient. 10 var _ APIClient = &Client{}