├── .idea ├── .gitignore ├── modules.xml ├── nacos-viper-remote.iml └── vcs.xml ├── LICENSE ├── README.md ├── config_remote_provider.go ├── example └── main.go ├── example_config.yaml ├── go.mod ├── nacos_manager.go ├── nacos_options.go ├── nacosprovider.go ├── viper_manager.go └── viper_remote.go /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoyofxteam/nacos-viper-remote/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoyofxteam/nacos-viper-remote/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/nacos-viper-remote.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoyofxteam/nacos-viper-remote/HEAD/.idea/nacos-viper-remote.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoyofxteam/nacos-viper-remote/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoyofxteam/nacos-viper-remote/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoyofxteam/nacos-viper-remote/HEAD/README.md -------------------------------------------------------------------------------- /config_remote_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoyofxteam/nacos-viper-remote/HEAD/config_remote_provider.go -------------------------------------------------------------------------------- /example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoyofxteam/nacos-viper-remote/HEAD/example/main.go -------------------------------------------------------------------------------- /example_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoyofxteam/nacos-viper-remote/HEAD/example_config.yaml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoyofxteam/nacos-viper-remote/HEAD/go.mod -------------------------------------------------------------------------------- /nacos_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoyofxteam/nacos-viper-remote/HEAD/nacos_manager.go -------------------------------------------------------------------------------- /nacos_options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoyofxteam/nacos-viper-remote/HEAD/nacos_options.go -------------------------------------------------------------------------------- /nacosprovider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoyofxteam/nacos-viper-remote/HEAD/nacosprovider.go -------------------------------------------------------------------------------- /viper_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoyofxteam/nacos-viper-remote/HEAD/viper_manager.go -------------------------------------------------------------------------------- /viper_remote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoyofxteam/nacos-viper-remote/HEAD/viper_remote.go --------------------------------------------------------------------------------