mirror of
https://github.com/spf13/viper
synced 2024-11-04 20:27:02 +00:00
36be6bf91f
fsnotify is not available on WASM, so config watching is not going to work. Signed-off-by: Mark Sagi-Kazar <mark.sagikazar@gmail.com>
30 lines
431 B
Go
30 lines
431 B
Go
// +build js,wasm
|
|
|
|
package viper
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/fsnotify/fsnotify"
|
|
)
|
|
|
|
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
|
|
}
|
|
|
|
func newWatcher() (*watcher, error) {
|
|
return &watcher{}, errors.New("fsnotify is not supported on WASM")
|
|
}
|