watch.go 324 B

123456789101112
  1. //go:build darwin || dragonfly || freebsd || openbsd || linux || netbsd || solaris || windows
  2. // +build darwin dragonfly freebsd openbsd linux netbsd solaris windows
  3. package viper
  4. import "github.com/fsnotify/fsnotify"
  5. type watcher = fsnotify.Watcher
  6. func newWatcher() (*watcher, error) {
  7. return fsnotify.NewWatcher()
  8. }