Watch bool

This commit is contained in:
emile 2015-09-07 18:10:33 +02:00
parent 0a09a78cac
commit 4558270c42
3 changed files with 14 additions and 6 deletions

View file

@ -10,6 +10,7 @@ import (
)
type FileProvider struct {
Watch bool
Filename string
}
@ -45,7 +46,9 @@ func (provider *FileProvider) Provide(serviceChan chan<- *Service){
}
}()
err = watcher.Add(filepath.Dir(file.Name()))
if(provider.Watch){
err = watcher.Add(filepath.Dir(file.Name()))
}
if err != nil {
log.Println(err)