mirror of
https://github.com/pierre-emmanuelJ/iptv-proxy.git
synced 2026-03-20 16:56:15 +01:00
Signed-off-by: Pierre-Emmanuel Jacquier <15922119+pierre-emmanuelJ@users.noreply.github.com>
12 lines
172 B
Go
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()
|
|
}
|