type InotifyWatcher …
func NewInotifyWatcher() (*InotifyWatcher, error) { … }
func (iw *InotifyWatcher) AddWatch(containerName, dir string) (bool, error) { … }
func (iw *InotifyWatcher) RemoveWatch(containerName, dir string) (bool, error) { … }
func (iw *InotifyWatcher) Error() chan error { … }
func (iw *InotifyWatcher) Event() chan *inotify.Event { … }
func (iw *InotifyWatcher) Close() error { … }
func (iw *InotifyWatcher) GetWatches() map[string][]string { … }
func mapToSlice(m map[string]bool) []string { … }