components-contrib/tests/utils/configupdater/updater.go

11 lines
285 B
Go

package configupdater
import "github.com/dapr/components-contrib/configuration"
type Updater interface {
Init(props map[string]string) error
AddKey(items map[string]*configuration.Item) error
UpdateKey(items map[string]*configuration.Item) error
DeleteKey(keys []string) error
}