github.com/olljanat/moby@v1.13.1/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{}