oauth2_proxy/watcher_unsupported.go
2019-04-12 08:59:46 -07:00

11 lines
258 B
Go

// +build !go1.3 plan9 solaris
package main
import "github.com/pusher/oauth2_proxy/logger"
func WatchForUpdates(filename string, done <-chan bool, action func()) {
logger.Printf("file watching not implemented on this platform")
go func() { <-done }()
}