LF RNIB Adaptation
[ric-plt/xapp-frame.git] / pkg / xapp / config.go
index 647b3eb..0493059 100755 (executable)
@@ -80,3 +80,7 @@ func (*Configurator) GetString(key string) string {
 func (*Configurator) GetInt(key string) int {
        return viper.GetInt(key)
 }
+
+func (*Configurator) GetBool(key string) bool {
+       return viper.GetBool(key)
+}