github.com/cloud-foundations/dominator@v0.0.0-20221004181915-6e4fee580046/lib/fsutil/watchFileWithFsNotifyStub.go (about)

     1  // +build !linux
     2  
     3  package fsutil
     4  
     5  import (
     6  	"io"
     7  
     8  	"github.com/Cloud-Foundations/Dominator/lib/log"
     9  )
    10  
    11  func watchFileWithFsNotify(pathname string, channel chan<- io.ReadCloser,
    12  	logger log.Logger) bool {
    13  	return false
    14  }
    15  
    16  func watchFileStopWithFsNotify() bool { return false }