Files
iptv-proxy/vendor/github.com/spf13/viper/watch.go
Pierre-Emmanuel Jacquier 4034a960a4 Bump cobra version
Signed-off-by: Pierre-Emmanuel Jacquier <15922119+pierre-emmanuelJ@users.noreply.github.com>
2021-09-16 17:17:36 +00:00

12 lines
172 B
Go

// +build !js
package viper
import "github.com/fsnotify/fsnotify"
type watcher = fsnotify.Watcher
func newWatcher() (*watcher, error) {
return fsnotify.NewWatcher()
}