notify.go 173 B

12345678910
  1. package watch
  2. import "github.com/windmilleng/fsnotify"
  3. type Notify interface {
  4. Close() error
  5. Add(name string) error
  6. Events() chan fsnotify.Event
  7. Errors() chan error
  8. }