matterbridge/vendor/github.com/spf13/viper/watch.go

12 lines
172 B
Go
Raw Normal View History

2021-06-16 21:00:49 +02:00
// +build !js
package viper
import "github.com/fsnotify/fsnotify"
type watcher = fsnotify.Watcher
func newWatcher() (*watcher, error) {
return fsnotify.NewWatcher()
}