mirror of
https://github.com/kyverno/kyverno.git
synced 2024-12-15 17:51:20 +00:00
25cf8d6c1e
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)
|
|
}
|