http-add-on/pkg/routing/sharedindexinformer.go

11 lines
146 B
Go

package routing
import (
"k8s.io/client-go/tools/cache"
)
type sharedIndexInformer interface {
cache.SharedIndexInformer
HasStarted() bool
}