github.com/Cloud-Foundations/Dominator@v0.3.4/lib/fsutil/watchFileWithFsNotifyStub.go (about) 1 // +build !linux 2 3 package fsutil 4 5 import ( 6 "github.com/Cloud-Foundations/Dominator/lib/log" 7 ) 8 9 func watchFileWithFsNotify(pathname string, logger log.Logger) <-chan struct{} { 10 return nil 11 } 12 13 func watchFileStopWithFsNotify() bool { return false }