Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
viper 是否有可能拥有不同的配置文件,这些配置文件将彼此分开存储和处理?
例如在文件一 { val: 5 } 中,在文件二中: { val: 7 }
在加载它们之后,它可以像这样使用:
viper.GetConfig(0).GetInt("val") => 5 viper.GetConfig(1).GetInt("val") => 7
并且还在更改将保存到正确文件等的值之后。
有没有办法实现这一点?