53 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Go
		
	
	
	
/*
 | 
						|
Copyright 2023 Compose, Zalando SE
 | 
						|
 | 
						|
Permission is hereby granted, free of charge, to any person obtaining a copy
 | 
						|
of this software and associated documentation files (the "Software"), to deal
 | 
						|
in the Software without restriction, including without limitation the rights
 | 
						|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 | 
						|
copies of the Software, and to permit persons to whom the Software is
 | 
						|
furnished to do so, subject to the following conditions:
 | 
						|
 | 
						|
The above copyright notice and this permission notice shall be included in all
 | 
						|
copies or substantial portions of the Software.
 | 
						|
 | 
						|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 | 
						|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 | 
						|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 | 
						|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 | 
						|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 | 
						|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 | 
						|
SOFTWARE.
 | 
						|
*/
 | 
						|
 | 
						|
// Code generated by informer-gen. DO NOT EDIT.
 | 
						|
 | 
						|
package acid
 | 
						|
 | 
						|
import (
 | 
						|
	v1 "github.com/zalando/postgres-operator/pkg/generated/informers/externalversions/acid.zalan.do/v1"
 | 
						|
	internalinterfaces "github.com/zalando/postgres-operator/pkg/generated/informers/externalversions/internalinterfaces"
 | 
						|
)
 | 
						|
 | 
						|
// Interface provides access to each of this group's versions.
 | 
						|
type Interface interface {
 | 
						|
	// V1 provides access to shared informers for resources in V1.
 | 
						|
	V1() v1.Interface
 | 
						|
}
 | 
						|
 | 
						|
type group struct {
 | 
						|
	factory          internalinterfaces.SharedInformerFactory
 | 
						|
	namespace        string
 | 
						|
	tweakListOptions internalinterfaces.TweakListOptionsFunc
 | 
						|
}
 | 
						|
 | 
						|
// New returns a new Interface.
 | 
						|
func New(f internalinterfaces.SharedInformerFactory, namespace string, tweakListOptions internalinterfaces.TweakListOptionsFunc) Interface {
 | 
						|
	return &group{factory: f, namespace: namespace, tweakListOptions: tweakListOptions}
 | 
						|
}
 | 
						|
 | 
						|
// V1 returns a new v1.Interface.
 | 
						|
func (g *group) V1() v1.Interface {
 | 
						|
	return v1.New(g.factory, g.namespace, g.tweakListOptions)
 | 
						|
}
 |