diff --git a/remote/remote.go b/remote/remote.go index 6e8a534..3f9d049 100644 --- a/remote/remote.go +++ b/remote/remote.go @@ -11,7 +11,7 @@ import ( "io" "os" - "github.com/spf13/viper" + "github.com/ShaleApps/viper" crypt "github.com/xordataexchange/crypt/config" ) diff --git a/viper.go b/viper.go index 44c2861..5f2dd4f 100644 --- a/viper.go +++ b/viper.go @@ -25,6 +25,7 @@ import ( "encoding/json" "errors" "fmt" + "github.com/ghodss/yaml" "io" "log" "os" @@ -1752,7 +1753,7 @@ func (v *Viper) WatchRemoteConfigOnChannel() error { // Retrieve the first found remote configuration. func (v *Viper) getKeyValueConfig() error { if RemoteConfig == nil { - return RemoteConfigError("Enable the remote features by doing a blank import of the viper/remote package: '_ github.com/spf13/viper/remote'") + return RemoteConfigError("Enable the remote features by doing a blank import of the viper/remote package: '_ github.com/ShaleApps/viper/remote'") } for _, rp := range v.remoteProviders {