refactor: use lowercase name to mark dynamic values

This commit is contained in:
Stavros
2026-02-16 23:36:12 +02:00
parent 9076216649
commit 8e3f10bc1f
2 changed files with 31 additions and 31 deletions

View File

@@ -110,7 +110,7 @@ func buildMapPaths(field reflect.StructField, parentPath string, paths *[]Path)
return
}
mapPath := parentPath + strings.ToUpper(field.Name) + "_NAME_"
mapPath := parentPath + strings.ToUpper(field.Name) + "_name_"
valueType := fieldType.Elem()
if valueType.Kind() == reflect.Struct {