Fix golint errors in windows.go for #116

closes #121
fixes #116
3 files changed
tree: dec664e03d6d1a4826c216376dc8fff715e0f036
  1. .gitignore
  2. .travis.yml
  3. AUTHORS
  4. CHANGELOG.md
  5. CONTRIBUTING.md
  6. example_test.go
  7. fsnotify.go
  8. inotify.go
  9. inotify_poller.go
  10. inotify_poller_test.go
  11. inotify_test.go
  12. integration_darwin_test.go
  13. integration_test.go
  14. kqueue.go
  15. LICENSE
  16. open_mode_bsd.go
  17. open_mode_darwin.go
  18. README.md
  19. windows.go
README.md

File system notifications for Go

GoDoc Go Report Card Coverage

Go 1.3+ required.

Cross platform: Windows, Linux, BSD and OS X.

AdapterOSStatus
inotifyLinux 2.6.27 or later, Android*Supported Build Status
kqueueBSD, OS X, iOS*Supported Build Status
ReadDirectoryChangesWWindowsSupported Build status
FSEventsOS XPlanned
FENSolaris 11Planned
fanotifyLinux 2.6.37+
USN JournalsWindowsMaybe
PollingAllMaybe

* Android and iOS are untested.

Please see the documentation for usage. Consult the Wiki for the FAQ and further information.

API stability

fsnotify is a fork of howeyc/fsnotify with a new API as of v1.0. The API is based on this design document.

All releases are tagged based on Semantic Versioning. Further API changes are planned, and will be tagged with a new major revision number.

Go 1.6 supports dependencies located in the vendor/ folder. Unless you are creating a library, it is recommended that you copy fsnotify into vendor/github.com/fsnotify/fsnotify within your project.

Contributing

Please refer to CONTRIBUTING before opening an issue or pull request.

Example

See example_test.go.

Related Projects