Interface Watcher interface
| 17 | |
| 18 | // Interface Watcher interface |
| 19 | type Interface interface { |
| 20 | Run(chan bool) |
| 21 | GetStatus() string |
| 22 | GetErrors() string |
| 23 | } |
| 24 | |
| 25 | // Watcher watch for directory changes and run commands |
| 26 | type Watcher struct { |
no outgoing calls
no test coverage detected