interface_stable.go 298 B

12345678910
  1. package client // import "github.com/docker/docker/client"
  2. // APIClient is an interface that clients that talk with a docker server must implement.
  3. type APIClient interface {
  4. CommonAPIClient
  5. apiClientExperimental
  6. }
  7. // Ensure that Client always implements APIClient.
  8. var _ APIClient = &Client{}