mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 16:06:56 +00:00
10 lines
158 B
Go
10 lines
158 B
Go
|
package resourcecache
|
||
|
|
||
|
import (
|
||
|
"k8s.io/client-go/tools/cache"
|
||
|
)
|
||
|
|
||
|
func startWatching(stopCh <-chan struct{}, s cache.SharedIndexInformer) {
|
||
|
s.Run(stopCh)
|
||
|
}
|