mirror of
https://github.com/spf13/viper
synced 2024-11-04 20:27:02 +00:00
db9f89ac41
Signed-off-by: Mark Sagi-Kazar <mark.sagikazar@gmail.com>
32 lines
637 B
Go
32 lines
637 B
Go
//go:build appengine || (!darwin && !dragonfly && !freebsd && !openbsd && !linux && !netbsd && !solaris && !windows)
|
|
// +build appengine !darwin,!dragonfly,!freebsd,!openbsd,!linux,!netbsd,!solaris,!windows
|
|
|
|
package viper
|
|
|
|
import (
|
|
"fmt"
|
|
"runtime"
|
|
|
|
"github.com/fsnotify/fsnotify"
|
|
)
|
|
|
|
func newWatcher() (*watcher, error) {
|
|
return &watcher{}, fmt.Errorf("fsnotify not supported on %s", runtime.GOOS)
|
|
}
|
|
|
|
type watcher struct {
|
|
Events chan fsnotify.Event
|
|
Errors chan error
|
|
}
|
|
|
|
func (*watcher) Close() error {
|
|
return nil
|
|
}
|
|
|
|
func (*watcher) Add(name string) error {
|
|
return nil
|
|
}
|
|
|
|
func (*watcher) Remove(name string) error {
|
|
return nil
|
|
}
|