mirror of https://github.com/docker/compose.git
11 lines
173 B
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
|
||
|
}
|