blob: 09a9cf908c323dcdb254b2565a1ce712d030d181 [file] [log] [blame]
// +build darwin freebsd linux netbsd openbsd windows
package follow
// newFSWatcher starts and returns a new fsnotify-based fsWatcher.
// filename specifies the file to watch.
func newFSWatcher(filename string) (fsWatcher, error) {
return newFSNotifyWatcher(filename)
}