Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CloudControllerFeatureFlagRepository ¶
type CloudControllerFeatureFlagRepository struct {
// contains filtered or unexported fields
}
func NewCloudControllerFeatureFlagRepository ¶
func NewCloudControllerFeatureFlagRepository(config core_config.Reader, gateway net.Gateway) CloudControllerFeatureFlagRepository
func (CloudControllerFeatureFlagRepository) FindByName ¶
func (repo CloudControllerFeatureFlagRepository) FindByName(name string) (models.FeatureFlag, error)
func (CloudControllerFeatureFlagRepository) List ¶
func (repo CloudControllerFeatureFlagRepository) List() ([]models.FeatureFlag, error)
type FeatureFlagRepository ¶
type FeatureFlagRepository interface { List() ([]models.FeatureFlag, error) FindByName(string) (models.FeatureFlag, error) Update(string, bool) error }
Click to show internal directories.
Click to hide internal directories.