olahol / melody

:notes: Minimalist websocket framework for Go
BSD 2-Clause "Simplified" License
3.76k stars 365 forks source link

Examples don't build #59

Closed riking closed 2 years ago

riking commented 5 years ago

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".