package update import "github.com/fsnotify/fsnotify" type Listener interface { Wait(chan<- Event, chan<- error) error } type Event struct { FileEvents []fsnotify.Event Revision string }