compose/pkg/watch/notify.go

11 lines
173 B
Go

package watch
import "github.com/windmilleng/fsnotify"
type Notify interface {
Close() error
Add(name string) error
Events() chan fsnotify.Event
Errors() chan error
}