Use payloadLen if provided
[ric-plt/xapp-frame.git] / pkg / xapp / config.go
index 647b3eb..1f90a1a 100755 (executable)
@@ -80,3 +80,11 @@ func (*Configurator) GetString(key string) string {
 func (*Configurator) GetInt(key string) int {
        return viper.GetInt(key)
 }
+
+func (*Configurator) GetUint32(key string) uint32 {
+       return viper.GetUint32(key)
+}
+
+func (*Configurator) GetBool(key string) bool {
+       return viper.GetBool(key)
+}