compose/pkg/watch/notify.go

11 lines
173 B
Go
Raw Normal View History

2018-08-16 20:53:47 +02:00
package watch
import "github.com/windmilleng/fsnotify"
type Notify interface {
Close() error
Add(name string) error
Events() chan fsnotify.Event
Errors() chan error
}