mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
4f0d95fa6e
Signed-off-by: Daniel Nephin <dnephin@docker.com>
18 lines
519 B
Go
18 lines
519 B
Go
package filenotify // import "github.com/docker/docker/pkg/filenotify"
|
|
|
|
import "github.com/fsnotify/fsnotify"
|
|
|
|
// fsNotifyWatcher wraps the fsnotify package to satisfy the FileNotifier interface
|
|
type fsNotifyWatcher struct {
|
|
*fsnotify.Watcher
|
|
}
|
|
|
|
// Events returns the fsnotify event channel receiver
|
|
func (w *fsNotifyWatcher) Events() <-chan fsnotify.Event {
|
|
return w.Watcher.Events
|
|
}
|
|
|
|
// Errors returns the fsnotify error channel receiver
|
|
func (w *fsNotifyWatcher) Errors() <-chan error {
|
|
return w.Watcher.Errors
|
|
}
|