1
0
mirror of https://github.com/oauth2-proxy/oauth2-proxy.git synced 2025-06-19 00:27:39 +02:00
Files
oauth2-proxy/watcher_unsupported.go
2021-10-06 14:57:37 +01:00

11 lines
233 B
Go

// +build !go1.3 plan9 solaris
package main
import "k8s.io/klog/v2"
func WatchForUpdates(filename string, done <-chan bool, action func()) {
klog.Errorf("file watching not implemented on this platform")
go func() { <-done }()
}