| 123456789101112 | //go:build darwin || dragonfly || freebsd || openbsd || linux || netbsd || solaris || windows// +build darwin dragonfly freebsd openbsd linux netbsd solaris windowspackage viperimport "github.com/fsnotify/fsnotify"type watcher = fsnotify.Watcherfunc newWatcher() (*watcher, error) {	return fsnotify.NewWatcher()}
 |