You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nacos-viper-remote/viper_manager.go

9 lines
196 B
Go

package nacos_viper_remote
import "github.com/spf13/viper"
type viperConfigManager interface {
Get(key string) ([]byte, error)
Watch(key string, stop chan bool) <-chan *viper.RemoteResponse
}