1
0
Fork 0
mirror of https://github.com/spf13/viper synced 2025-06-12 22:27:18 +00:00
spf13--viper/watch.go

13 lines
187 B
Go
Raw Normal View History

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