| 8 | const DefaultFileChangeDelay = 300 * time.Millisecond |
| 9 | |
| 10 | type FileMonitor interface { |
| 11 | Listen() <-chan []string |
| 12 | Add(string) error |
| 13 | Close() error |
| 14 | } |
| 15 | |
| 16 | type fileMonitor struct { |
| 17 | listeners []chan []string |
no outgoing calls
no test coverage detected
searching dependent graphs…