examples/filewatch/main.go imports "github.com/go-fsnotify/fsnotify". However, this import path is deprecated and deleted. This makes the Go tool error out because the package contains no source code.
Update the import path to "github.com/fsnotify/fsnotify".
examples/filewatch/main.go imports
"github.com/go-fsnotify/fsnotify"
. However, this import path is deprecated and deleted. This makes the Go tool error out because the package contains no source code.Update the import path to
"github.com/fsnotify/fsnotify"
.