mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-05 15:37:19 +00:00
7 lines
110 B
Go
7 lines
110 B
Go
|
package controllers
|
||
|
|
||
|
type Controller interface {
|
||
|
// Run starts the controller
|
||
|
Run(stopCh <-chan struct{})
|
||
|
}
|