12345678910111213141516171819202122232425262728293031323334353637 |
- package fsnotify
- import (
- "errors"
- )
- type Watcher struct {
- Events chan Event
- Errors chan error
- }
- func NewWatcher() (*Watcher, error) {
- return nil, errors.New("FEN based watcher not yet supported for fsnotify\n")
- }
- func (w *Watcher) Close() error {
- return nil
- }
- func (w *Watcher) Add(name string) error {
- return nil
- }
- func (w *Watcher) Remove(name string) error {
- return nil
- }
|