5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-02-17 03:09:14 +00:00
2021-06-16 21:00:49 +02:00

12 lines
172 B
Go

// +build !js
package viper
import "github.com/fsnotify/fsnotify"
type watcher = fsnotify.Watcher
func newWatcher() (*watcher, error) {
return fsnotify.NewWatcher()
}