You've already forked oauth2-proxy
mirror of
https://github.com/oauth2-proxy/oauth2-proxy.git
synced 2025-06-19 00:27:39 +02:00
11 lines
233 B
Go
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 }()
|
|
}
|