Add starts watching a file for changes.
(file string)
| 23 | type Watcher interface { |
| 24 | // Add starts watching a file for changes. |
| 25 | Add(file string) error |
| 26 | |
| 27 | // Remove stops watching a file for changes. |
| 28 | Remove(file string) error |
no outgoing calls