DockerCLI/cli/config/credentials/default_store_linux.go

14 lines
198 B
Go

package credentials
import (
"github.com/docker/docker-credential-helpers/pass"
)
func defaultCredentialsStore() string {
if pass.PassInitialized {
return "pass"
}
return "secretservice"
}