1
0
mirror of https://github.com/oauth2-proxy/oauth2-proxy.git synced 2024-11-24 08:52:25 +02:00
oauth2-proxy/watcher_unsupported.go
2020-03-29 15:40:10 +01:00

11 lines
268 B
Go

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