1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-01-20 18:52:16 +00:00
kyverno/pkg/controllers/controller.go

9 lines
126 B
Go
Raw Normal View History

package controllers
import "context"
type Controller interface {
// Run starts the controller
Run(context.Context, int)
}