package agent
import "context"
type Controller interface {
Name() string
Reconcile(ctx context.Context, state *State) error
}