mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-05 15:37:19 +00:00
Signed-off-by: Charles-Edouard Brétéché <charled.breteche@gmail.com> Signed-off-by: Charles-Edouard Brétéché <charled.breteche@gmail.com>
8 lines
126 B
Go
8 lines
126 B
Go
package controllers
|
|
|
|
import "context"
|
|
|
|
type Controller interface {
|
|
// Run starts the controller
|
|
Run(context.Context, int)
|
|
}
|