Move AuthConfig to api/types

Signed-off-by: Daniel Nephin <dnephin@gmail.com>
Upstream-commit: 5b321e328769cc93c3454e82ec3fe07672156f2e
Component: engine
This commit is contained in:
Daniel Nephin
2015-12-11 20:11:42 -08:00
committed by Daniel Nephin
parent 07745f2aef
commit 0d867da41c
25 changed files with 95 additions and 96 deletions

View File

@ -7,7 +7,6 @@ import (
"github.com/Sirupsen/logrus"
"github.com/docker/distribution/reference"
"github.com/docker/docker/cliconfig"
"github.com/docker/docker/daemon/events"
"github.com/docker/docker/distribution/metadata"
"github.com/docker/docker/distribution/xfer"
@ -25,7 +24,7 @@ type ImagePullConfig struct {
MetaHeaders map[string][]string
// AuthConfig holds authentication credentials for authenticating with
// the registry.
AuthConfig *cliconfig.AuthConfig
AuthConfig *types.AuthConfig
// ProgressOutput is the interface for showing the status of the pull
// operation.
ProgressOutput progress.Output