From 8e57fea7a87e3905de2f3279842c6c14564fe4e4 Mon Sep 17 00:00:00 2001 From: Anthony Fok Date: Wed, 20 Apr 2016 21:51:22 +0800 Subject: [PATCH] Update import path of fsnotify Rename "gopkg.in/fsnotify.v1" to "github.com/fsnotify/fsnotify" per upstream recommendation. See https://github.com/fsnotify/fsnotify/issues/108 for rationale. --- viper.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/viper.go b/viper.go index 70f8d03..df18448 100644 --- a/viper.go +++ b/viper.go @@ -31,12 +31,12 @@ import ( "strings" "time" + "github.com/fsnotify/fsnotify" "github.com/kr/pretty" "github.com/mitchellh/mapstructure" "github.com/spf13/cast" jww "github.com/spf13/jwalterweatherman" "github.com/spf13/pflag" - "gopkg.in/fsnotify.v1" ) var v *Viper