github.com/endophage/docker@v1.4.2-0.20161027011718-242853499895/client/interface_stable.go (about)

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