move auth to the client WIP
This commit is contained in:
parent
e742b3efb6
commit
e6cc4ff646
1 changed files with 1 additions and 4 deletions
|
@ -466,10 +466,7 @@ type Registry struct {
|
||||||
authConfig *auth.AuthConfig
|
authConfig *auth.AuthConfig
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewRegistry(root string) *Registry {
|
func NewRegistry(root string, authConfig *auth.AuthConfig) *Registry {
|
||||||
// If the auth file does not exist, keep going
|
|
||||||
authConfig, _ := auth.LoadConfig(root)
|
|
||||||
|
|
||||||
r := &Registry{
|
r := &Registry{
|
||||||
authConfig: authConfig,
|
authConfig: authConfig,
|
||||||
client: &http.Client{},
|
client: &http.Client{},
|
||||||
|
|
Loading…
Reference in a new issue