Merge pull request #872 from nogoegst/fix-unsupported-default-credential-store

Fix compilation of defaultCredentialStore() on unsupported platforms
This commit is contained in:
Daniel Nephin
2018-02-12 11:51:18 -05:00
committed by GitHub

View File

@ -2,4 +2,6 @@
package credentials
const defaultCredentialsStore = ""
func defaultCredentialsStore() string {
return ""
}