mirror of
https://github.com/outbackdingo/kamaji.git
synced 2026-01-27 10:19:29 +00:00
13 lines
243 B
Go
13 lines
243 B
Go
// Copyright 2022 Clastix Labs
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package indexers
|
|
|
|
import "sigs.k8s.io/controller-runtime/pkg/client"
|
|
|
|
type Indexer interface {
|
|
Object() client.Object
|
|
Field() string
|
|
ExtractValue() client.IndexerFunc
|
|
}
|