Skip to content

Commit

Permalink
remove unused struct
Browse files Browse the repository at this point in the history
  • Loading branch information
christeredvartsen committed Feb 21, 2024
1 parent 4c48889 commit b17b324
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions internal/database/reconcilers.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,17 +40,6 @@ type ReconcilerError struct {
*gensql.ReconcilerError
}

type ReconcilerConfigValues struct {
values map[string]string
}

func (v ReconcilerConfigValues) GetValue(s string) string {
if v, exists := v.values[s]; exists {
return v
}
return ""
}

func (d *database) GetReconciler(ctx context.Context, reconcilerName string) (*Reconciler, error) {
reconciler, err := d.querier.GetReconciler(ctx, reconcilerName)
if err != nil {
Expand Down

0 comments on commit b17b324

Please sign in to comment.