mirror of
https://github.com/docker/cli.git
synced 2026-01-26 15:41:42 +03:00
Signed-off-by: Alexander Morozov <lk4d4@docker.com> Upstream-commit: f2614f2107c838d014d31b806e3b8a9f1395cb2b Component: engine
19 lines
466 B
Go
19 lines
466 B
Go
package filenotify
|
|
|
|
import "github.com/fsnotify/fsnotify"
|
|
|
|
// fsNotifyWatcher wraps the fsnotify package to satisfy the FileNotifer 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
|
|
}
|