Files
coder/coderd/prebuilds/reconcile.go
Danny Kopping c0f81d03d4 Enable reconciliator on entitlements change
Signed-off-by: Danny Kopping <dannykopping@gmail.com>
2025-03-04 09:55:39 +00:00

19 lines
440 B
Go

package prebuilds
import (
"context"
)
type noopReconciler struct{}
func NewNoopReconciler() Reconciler {
return &noopReconciler{}
}
func (noopReconciler) RunLoop(context.Context) {}
func (noopReconciler) Stop(context.Context, error) {}
func (noopReconciler) ReconcileAll(context.Context) error { return nil }
func (noopReconciler) ReconcileTemplate() error { return nil }
var _ Reconciler = noopReconciler{}