Skip to content

Commit

Permalink
Removed unused PackageRevisionMeta struct
Browse files Browse the repository at this point in the history
  • Loading branch information
liamfallon committed Dec 10, 2024
1 parent 6c7ba83 commit 9e44038
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions pkg/meta/store.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,18 +52,6 @@ type MetadataStore interface {
Delete(ctx context.Context, namespacedName types.NamespacedName, clearFinalizer bool) (metav1.ObjectMeta, error)
}

// PackageRevisionMeta contains metadata about a specific PackageRevision. The
// PackageRevision is identified by the name and namespace.
type PackageRevisionMeta struct {
Name string
Namespace string
Labels map[string]string
Annotations map[string]string
Finalizers []string
OwnerReferences []metav1.OwnerReference
DeletionTimestamp *metav1.Time
}

var _ MetadataStore = &crdMetadataStore{}

func NewCrdMetadataStore(coreClient client.Client) *crdMetadataStore {
Expand Down

0 comments on commit 9e44038

Please sign in to comment.