Files
kubesphere/vendor/github.com/spf13/viper/watch.go
hongming f9fe06434c Update dependencies (#5574)
Update vendor
2023-03-09 10:55:45 +08:00

13 lines
324 B
Go

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