1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-05 15:37:19 +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)
}