5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-11-15 04:10:27 +00:00
matterbridge/vendor/github.com/spf13/viper/watch.go

13 lines
324 B
Go
Raw Normal View History

2023-01-28 21:57:53 +00:00
//go:build darwin || dragonfly || freebsd || openbsd || linux || netbsd || solaris || windows
// +build darwin dragonfly freebsd openbsd linux netbsd solaris windows
2021-06-16 19:00:49 +00:00
package viper
import "github.com/fsnotify/fsnotify"
type watcher = fsnotify.Watcher
func newWatcher() (*watcher, error) {
return fsnotify.NewWatcher()
}