5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-11-15 01:50:27 +00:00
matterbridge/vendor/github.com/spf13/viper/watch.go
2023-01-28 22:57:53 +01: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()
}