From 6f860bfb34d2f1ae9282ed8b01ae2f05c17d1230 Mon Sep 17 00:00:00 2001 From: Jordan Olshevski Date: Tue, 7 Nov 2023 17:06:47 -0600 Subject: [PATCH] Remove unused interface --- internal/reconstitution/api.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/internal/reconstitution/api.go b/internal/reconstitution/api.go index f4f44641..0a630d90 100644 --- a/internal/reconstitution/api.go +++ b/internal/reconstitution/api.go @@ -13,11 +13,6 @@ import ( type StatusPatchFn func(*apiv1.ResourceState) bool -type Reconciler interface { - Name() string - Reconcile(ctx context.Context, req *Request) (ctrl.Result, error) -} - type Client interface { Get(ctx context.Context, ref *ResourceRef, gen int64) (*Resource, bool) PatchStatusAsync(ctx context.Context, req *ManifestRef, patchFn StatusPatchFn)