1 //go:build darwin 2 3 package trafficshaping 4 5 import ( 6 "context" 7 8 "edge-infra.dev/pkg/k8s/runtime/controller/reconcile" 9 v1ien "edge-infra.dev/pkg/sds/ien/k8s/apis/v1" 10 "edge-infra.dev/pkg/sds/ien/k8s/controllers/nodeagent/config" 11 ) 12 13 type Plugin struct{} 14 15 func (p Plugin) Reconcile(_ context.Context, _ *v1ien.IENode, _ config.Config) (reconcile.Result, error) { 16 return reconcile.ResultEmpty, nil 17 } 18