github.com/pusher/oauth2_proxy@v3.2.0+incompatible/watcher_unsupported.go (about)

     1  // +build !go1.3 plan9 solaris
     2  
     3  package main
     4  
     5  import (
     6  	"log"
     7  )
     8  
     9  func WatchForUpdates(filename string, done <-chan bool, action func()) {
    10  	log.Printf("file watching not implemented on this platform")
    11  	go func() { <-done }()
    12  }